Linux vps-4302913.novaexata.com.br 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.14
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
rubygems /
rubygems /
commands /
[ HOME SHELL ]
Name
Size
Permission
Action
build_command.rb
859
B
-rw-r--r--
cert_command.rb
6.41
KB
-rw-r--r--
check_command.rb
2.01
KB
-rw-r--r--
cleanup_command.rb
3.82
KB
-rw-r--r--
contents_command.rb
3.12
KB
-rw-r--r--
dependency_command.rb
3.89
KB
-rw-r--r--
environment_command.rb
4.16
KB
-rw-r--r--
fetch_command.rb
1.49
KB
-rw-r--r--
generate_index_command.rb
2.52
KB
-rw-r--r--
help_command.rb
4.56
KB
-rw-r--r--
install_command.rb
5.45
KB
-rw-r--r--
list_command.rb
696
B
-rw-r--r--
lock_command.rb
2.67
KB
-rw-r--r--
mirror_command.rb
395
B
-rw-r--r--
outdated_command.rb
866
B
-rw-r--r--
owner_command.rb
1.9
KB
-rw-r--r--
pristine_command.rb
3.66
KB
-rw-r--r--
push_command.rb
2.02
KB
-rw-r--r--
query_command.rb
8.11
KB
-rw-r--r--
rdoc_command.rb
2.31
KB
-rw-r--r--
search_command.rb
616
B
-rw-r--r--
server_command.rb
2.35
KB
-rw-r--r--
setup_command.rb
12.94
KB
-rw-r--r--
sources_command.rb
3.62
KB
-rw-r--r--
specification_command.rb
2.93
KB
-rw-r--r--
stale_command.rb
704
B
-rw-r--r--
uninstall_command.rb
3.07
KB
-rw-r--r--
unpack_command.rb
4.06
KB
-rw-r--r--
update_command.rb
5.8
KB
-rw-r--r--
which_command.rb
1.87
KB
-rw-r--r--
yank_command.rb
2.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fetch_command.rb
require 'rubygems/command' require 'rubygems/local_remote_options' require 'rubygems/version_option' class Gem::Commands::FetchCommand < Gem::Command include Gem::LocalRemoteOptions include Gem::VersionOption def initialize super 'fetch', 'Download a gem and place it in the current directory' add_bulk_threshold_option add_proxy_option add_source_option add_clear_sources_option add_version_option add_platform_option add_prerelease_option end def arguments # :nodoc: 'GEMNAME name of gem to download' end def defaults_str # :nodoc: "--version '#{Gem::Requirement.default}'" end def usage # :nodoc: "#{program_name} GEMNAME [GEMNAME ...]" end def execute version = options[:version] || Gem::Requirement.default platform = Gem.platforms.last gem_names = get_all_gem_names gem_names.each do |gem_name| dep = Gem::Dependency.new gem_name, version dep.prerelease = options[:prerelease] specs_and_sources, errors = Gem::SpecFetcher.fetcher.spec_for_dependency dep if platform then filtered = specs_and_sources.select { |s,| s.platform == platform } specs_and_sources = filtered unless filtered.empty? end spec, source = specs_and_sources.max_by { |s,| s.version } if spec.nil? then show_lookup_failure gem_name, version, errors, options[:domain] next end source.download spec say "Downloaded #{spec.full_name}" end end end
Close