X7ROOT File Manager
Current Path:
/opt/alt/ruby27/share/rubygems/rubygems
opt
/
alt
/
ruby27
/
share
/
rubygems
/
rubygems
/
ðŸ“
..
📄
available_set.rb
(3.02 KB)
📄
basic_specification.rb
(7.62 KB)
📄
bundler_version_finder.rb
(2.97 KB)
📄
command.rb
(15.79 KB)
📄
command_manager.rb
(4.99 KB)
ðŸ“
commands
📄
compatibility.rb
(1022 B)
📄
config_file.rb
(12.69 KB)
ðŸ“
core_ext
ðŸ“
defaults
📄
defaults.rb
(4.76 KB)
📄
dependency.rb
(8.64 KB)
📄
dependency_installer.rb
(12 KB)
📄
dependency_list.rb
(5.54 KB)
📄
deprecate.rb
(1.75 KB)
📄
doctor.rb
(3.06 KB)
📄
errors.rb
(4.64 KB)
📄
exceptions.rb
(6.49 KB)
ðŸ“
ext
📄
ext.rb
(460 B)
📄
gem_runner.rb
(2.18 KB)
📄
gemcutter_utilities.rb
(5.16 KB)
📄
indexer.rb
(11.29 KB)
📄
install_default_message.rb
(336 B)
📄
install_message.rb
(310 B)
📄
install_update_options.rb
(6.26 KB)
📄
installer.rb
(26.62 KB)
📄
installer_test_case.rb
(4.8 KB)
📄
local_remote_options.rb
(3.53 KB)
📄
mock_gem_ui.rb
(1.38 KB)
📄
name_tuple.rb
(2.42 KB)
ðŸ“
package
📄
package.rb
(17.99 KB)
📄
package_task.rb
(3.8 KB)
📄
path_support.rb
(1.88 KB)
📄
platform.rb
(6.25 KB)
📄
psych_additions.rb
(300 B)
📄
psych_tree.rb
(796 B)
📄
rdoc.rb
(524 B)
📄
remote_fetcher.rb
(9.48 KB)
ðŸ“
request
📄
request.rb
(8.7 KB)
ðŸ“
request_set
📄
request_set.rb
(11.94 KB)
📄
requirement.rb
(7.15 KB)
ðŸ“
resolver
📄
resolver.rb
(9.46 KB)
📄
s3_uri_signer.rb
(5.93 KB)
📄
safe_yaml.rb
(1.55 KB)
ðŸ“
security
📄
security.rb
(21.24 KB)
📄
security_option.rb
(1.03 KB)
📄
server.rb
(22.72 KB)
ðŸ“
source
📄
source.rb
(5.38 KB)
📄
source_list.rb
(2.55 KB)
📄
source_local.rb
(274 B)
📄
source_specific_file.rb
(272 B)
📄
spec_fetcher.rb
(6.3 KB)
📄
specification.rb
(70.78 KB)
📄
specification_policy.rb
(11.67 KB)
ðŸ“
ssl_certs
📄
stub_specification.rb
(4.74 KB)
📄
syck_hack.rb
(2.12 KB)
📄
test_case.rb
(39.92 KB)
📄
test_utilities.rb
(8.84 KB)
📄
text.rb
(1.85 KB)
📄
uninstaller.rb
(8.83 KB)
📄
uri_formatter.rb
(778 B)
📄
uri_parser.rb
(785 B)
📄
uri_parsing.rb
(324 B)
📄
user_interaction.rb
(13.3 KB)
ðŸ“
util
📄
util.rb
(2.41 KB)
📄
validator.rb
(3.65 KB)
📄
version.rb
(12.45 KB)
📄
version_option.rb
(2.02 KB)
Editing: gemcutter_utilities.rb
# frozen_string_literal: true require 'rubygems/remote_fetcher' require 'rubygems/text' ## # Utility methods for using the RubyGems API. module Gem::GemcutterUtilities ERROR_CODE = 1 include Gem::Text attr_writer :host ## # Add the --key option def add_key_option add_option('-k', '--key KEYNAME', Symbol, 'Use the given API key', 'from ~/.gem/credentials') do |value,options| options[:key] = value end end ## # Add the --otp option def add_otp_option add_option('--otp CODE', 'Digit code for multifactor authentication') do |value, options| options[:otp] = value end end ## # The API key from the command options or from the user's configuration. def api_key if ENV["GEM_HOST_API_KEY"] ENV["GEM_HOST_API_KEY"] elsif options[:key] verify_api_key options[:key] elsif Gem.configuration.api_keys.key?(host) Gem.configuration.api_keys[host] else Gem.configuration.rubygems_api_key end end ## # The host to connect to either from the RUBYGEMS_HOST environment variable # or from the user's configuration def host configured_host = Gem.host unless Gem.configuration.disable_default_gem_server @host ||= begin env_rubygems_host = ENV['RUBYGEMS_HOST'] env_rubygems_host = nil if env_rubygems_host and env_rubygems_host.empty? env_rubygems_host || configured_host end end ## # Creates an RubyGems API to +host+ and +path+ with the given HTTP +method+. # # If +allowed_push_host+ metadata is present, then it will only allow that host. def rubygems_api_request(method, path, host = nil, allowed_push_host = nil, &block) require 'net/http' self.host = host if host unless self.host alert_error "You must specify a gem server" terminate_interaction(ERROR_CODE) end if allowed_push_host allowed_host_uri = URI.parse(allowed_push_host) host_uri = URI.parse(self.host) unless (host_uri.scheme == allowed_host_uri.scheme) && (host_uri.host == allowed_host_uri.host) alert_error "#{self.host.inspect} is not allowed by the gemspec, which only allows #{allowed_push_host.inspect}" terminate_interaction(ERROR_CODE) end end uri = URI.parse "#{self.host}/#{path}" request_method = Net::HTTP.const_get method.to_s.capitalize response = Gem::RemoteFetcher.fetcher.request(uri, request_method, &block) return response unless mfa_unauthorized?(response) Gem::RemoteFetcher.fetcher.request(uri, request_method) do |req| req.add_field "OTP", get_otp block.call(req) end end def mfa_unauthorized?(response) response.kind_of?(Net::HTTPUnauthorized) && response.body.start_with?('You have enabled multifactor authentication') end def get_otp say 'You have enabled multi-factor authentication. Please enter OTP code.' ask 'Code: ' end ## # Signs in with the RubyGems API at +sign_in_host+ and sets the rubygems API # key. def sign_in(sign_in_host = nil) sign_in_host ||= self.host return if api_key pretty_host = if Gem::DEFAULT_HOST == sign_in_host 'RubyGems.org' else sign_in_host end say "Enter your #{pretty_host} credentials." say "Don't have an account yet? " + "Create one at #{sign_in_host}/sign_up" email = ask " Email: " password = ask_for_password "Password: " say "\n" response = rubygems_api_request(:get, "api/v1/api_key", sign_in_host) do |request| request.basic_auth email, password request.add_field "OTP", options[:otp] if options[:otp] end with_response response do |resp| say "Signed in." set_api_key host, resp.body end end ## # Retrieves the pre-configured API key +key+ or terminates interaction with # an error. def verify_api_key(key) if Gem.configuration.api_keys.key? key Gem.configuration.api_keys[key] else alert_error "No such API key. Please add it to your configuration (done automatically on initial `gem push`)." terminate_interaction(ERROR_CODE) end end ## # If +response+ is an HTTP Success (2XX) response, yields the response if a # block was given or shows the response body to the user. # # If the response was not successful, shows an error to the user including # the +error_prefix+ and the response body. def with_response(response, error_prefix = nil) case response when Net::HTTPSuccess then if block_given? yield response else say clean_text(response.body) end else message = response.body message = "#{error_prefix}: #{message}" if error_prefix say clean_text(message) terminate_interaction(ERROR_CODE) end end ## # Returns true when the user has enabled multifactor authentication from # +response+ text and no otp provided by options. def set_api_key(host, key) if host == Gem::DEFAULT_HOST Gem.configuration.rubygems_api_key = key else Gem.configuration.set_api_key host, key end end end
Upload File
Create Folder