In Files

  • ruby-3.1.2/lib/rubygems/commands/server_command.rb

Parent

Methods

Files

Class/Module Index [+]

Quicksearch

Gem::Commands::ServerCommand

Public Class Methods

new() click to toggle source
 
               # File ruby-3.1.2/lib/rubygems/commands/server_command.rb, line 6
def initialize
  super('server', 'Starts up a web server that hosts the RDoc (requires rubygems-server)')
  begin
    Gem::Specification.find_by_name('rubygems-server').activate
  rescue Gem::LoadError
    # no-op
  end
end
            

Public Instance Methods

execute() click to toggle source
 
               # File ruby-3.1.2/lib/rubygems/commands/server_command.rb, line 21
def execute
  alert_error "Install the rubygems-server gem for the server command"
end