Skip to Content Skip to Search
Methods
E
N

Class Public methods

new()

# File ruby/lib/rubygems/commands/server_command.rb, line 7
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

Instance Public methods

execute()

# File ruby/lib/rubygems/commands/server_command.rb, line 22
def execute
  alert_error "Install the rubygems-server gem for the server command"
end