X7ROOT File Manager
Current Path:
/opt/alt/ruby19/lib64/ruby/1.9.1/rubygems/commands
opt
/
alt
/
ruby19
/
lib64
/
ruby
/
1.9.1
/
rubygems
/
commands
/
ðŸ“
..
📄
build_command.rb
(1.25 KB)
📄
cert_command.rb
(2.74 KB)
📄
check_command.rb
(1.64 KB)
📄
cleanup_command.rb
(2.59 KB)
📄
contents_command.rb
(2.59 KB)
📄
dependency_command.rb
(4.19 KB)
📄
environment_command.rb
(3.9 KB)
📄
fetch_command.rb
(1.85 KB)
📄
generate_index_command.rb
(3.86 KB)
📄
help_command.rb
(4.43 KB)
📄
install_command.rb
(4.83 KB)
📄
list_command.rb
(696 B)
📄
lock_command.rb
(2.67 KB)
📄
outdated_command.rb
(785 B)
📄
owner_command.rb
(1.7 KB)
📄
pristine_command.rb
(3.2 KB)
📄
push_command.rb
(1.31 KB)
📄
query_command.rb
(7.38 KB)
📄
rdoc_command.rb
(2.24 KB)
📄
search_command.rb
(582 B)
📄
server_command.rb
(2.35 KB)
📄
setup_command.rb
(9.45 KB)
📄
sources_command.rb
(3.27 KB)
📄
specification_command.rb
(3.04 KB)
📄
stale_command.rb
(704 B)
📄
uninstall_command.rb
(2.49 KB)
📄
unpack_command.rb
(4.03 KB)
📄
update_command.rb
(6.04 KB)
📄
which_command.rb
(1.87 KB)
Editing: owner_command.rb
require 'rubygems/command' require 'rubygems/local_remote_options' require 'rubygems/gemcutter_utilities' class Gem::Commands::OwnerCommand < Gem::Command include Gem::LocalRemoteOptions include Gem::GemcutterUtilities def description # :nodoc: 'Manage gem owners on RubyGems.org.' end def arguments # :nodoc: "GEM gem to manage owners for" end def initialize super 'owner', description add_proxy_option add_key_option defaults.merge! :add => [], :remove => [] add_option '-a', '--add EMAIL', 'Add an owner' do |value, options| options[:add] << value end 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 add_owners name, options[:add] remove_owners name, options[:remove] show_owners name end def show_owners name response = rubygems_api_request :get, "api/v1/gems/#{name}/owners.yaml" do |request| request.add_field "Authorization", api_key end with_response response do |resp| owners = YAML.load resp.body say "Owners for gem: #{name}" owners.each do |owner| say "- #{owner['email']}" end end end def add_owners name, owners manage_owners :post, name, owners end def remove_owners name, owners manage_owners :delete, name, owners end def manage_owners method, name, owners owners.each do |owner| response = rubygems_api_request method, "api/v1/gems/#{name}/owners" do |request| request.set_form_data 'email' => owner request.add_field "Authorization", api_key end with_response response end end end
Upload File
Create Folder