diff options
-rw-r--r-- | lib/rubygems/commands/owner_command.rb | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -7,7 +7,14 @@ class Gem::Commands::OwnerCommand < Gem::Command include Gem::GemcutterUtilities def description # :nodoc: - 'Manage gem owners on RubyGems.org.' end def arguments # :nodoc: @@ -19,7 +26,7 @@ class Gem::Commands::OwnerCommand < Gem::Command end def initialize - super 'owner', description add_proxy_option add_key_option defaults.merge! :add => [], :remove => [] @@ -31,9 +38,15 @@ class Gem::Commands::OwnerCommand < Gem::Command add_option '-r', '--remove EMAIL', 'Remove an owner' do |value, options| options[:remove] << value end end def execute sign_in name = get_one_gem_name |