module Gem::CooldownOption
Mixin methods for the cooldown option for Gem::Commands.
Public Instance Methods
# File lib/rubygems/cooldown_option.rb, line 12 def add_cooldown_option(group = nil) args = [group, "--cooldown DAYS", Integer, "Do not use gem versions published within", "the last DAYS days (0 disables the cooldown)"].compact add_option(*args) do |value, options| options[:cooldown] = value end end
Add the –cooldown option to the option parser.