summaryrefslogtreecommitdiff
path: root/lib/rubygems/commands
diff options
context:
space:
mode:
-rw-r--r--lib/rubygems/commands/build_command.rb1
-rw-r--r--lib/rubygems/commands/cert_command.rb1
-rw-r--r--lib/rubygems/commands/check_command.rb1
-rw-r--r--lib/rubygems/commands/cleanup_command.rb1
-rw-r--r--lib/rubygems/commands/contents_command.rb1
-rw-r--r--lib/rubygems/commands/dependency_command.rb1
-rw-r--r--lib/rubygems/commands/environment_command.rb1
-rw-r--r--lib/rubygems/commands/exec_command.rb1
-rw-r--r--lib/rubygems/commands/fetch_command.rb1
-rw-r--r--lib/rubygems/commands/generate_index_command.rb1
-rw-r--r--lib/rubygems/commands/help_command.rb1
-rw-r--r--lib/rubygems/commands/install_command.rb1
-rw-r--r--lib/rubygems/commands/list_command.rb1
-rw-r--r--lib/rubygems/commands/lock_command.rb1
-rw-r--r--lib/rubygems/commands/mirror_command.rb1
-rw-r--r--lib/rubygems/commands/open_command.rb1
-rw-r--r--lib/rubygems/commands/outdated_command.rb1
-rw-r--r--lib/rubygems/commands/owner_command.rb1
-rw-r--r--lib/rubygems/commands/pristine_command.rb1
-rw-r--r--lib/rubygems/commands/push_command.rb1
-rw-r--r--lib/rubygems/commands/query_command.rb1
-rw-r--r--lib/rubygems/commands/rdoc_command.rb1
-rw-r--r--lib/rubygems/commands/search_command.rb1
-rw-r--r--lib/rubygems/commands/server_command.rb1
-rw-r--r--lib/rubygems/commands/setup_command.rb1
-rw-r--r--lib/rubygems/commands/signin_command.rb1
-rw-r--r--lib/rubygems/commands/signout_command.rb1
-rw-r--r--lib/rubygems/commands/sources_command.rb1
-rw-r--r--lib/rubygems/commands/specification_command.rb1
-rw-r--r--lib/rubygems/commands/stale_command.rb1
-rw-r--r--lib/rubygems/commands/uninstall_command.rb1
-rw-r--r--lib/rubygems/commands/unpack_command.rb1
-rw-r--r--lib/rubygems/commands/update_command.rb1
-rw-r--r--lib/rubygems/commands/which_command.rb1
-rw-r--r--lib/rubygems/commands/yank_command.rb1
35 files changed, 35 insertions, 0 deletions
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../package"
require_relative "../version_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../security"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../version_option"
require_relative "../validator"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../dependency_list"
require_relative "../uninstaller"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../version_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../version_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
class Gem::Commands::EnvironmentCommand < Gem::Command
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../dependency_installer"
require_relative "../gem_runner"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../version_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../indexer"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
class Gem::Commands::HelpCommand < Gem::Command
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../install_update_options"
require_relative "../dependency_installer"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../query_utils"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
class Gem::Commands::LockCommand < Gem::Command
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
unless defined? Gem::Commands::MirrorCommand
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../version_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../spec_fetcher"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../gemcutter_utilities"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../package"
require_relative "../installer"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../gemcutter_utilities"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../query_utils"
require_relative "../deprecate"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../version_option"
require_relative "../rdoc"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../query_utils"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
unless defined? Gem::Commands::ServerCommand
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
##
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../gemcutter_utilities"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
class Gem::Commands::SignoutCommand < Gem::Command
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../remote_fetcher"
require_relative "../spec_fetcher"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../version_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
class Gem::Commands::StaleCommand < Gem::Command
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../version_option"
require_relative "../uninstaller"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../version_option"
require_relative "../security_option"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../command_manager"
require_relative "../dependency_installer"
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
class Gem::Commands::WhichCommand < Gem::Command
@@ -1,4 +1,5 @@
# frozen_string_literal: true
require_relative "../command"
require_relative "../local_remote_options"
require_relative "../version_option"