Sha256: 97c6a76c1ae88ac602562787f58e4c091e8c673a99e0e20009cf31e881a19872
Contents?: true
Size: 503 Bytes
Versions: 6
Compression:
Stored size: 503 Bytes
Contents
$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed require 'rubygems/command_manager' require 'commands/abstract_command' %w[migrate owner push tumble].each do |command| require "commands/#{command}" Gem::CommandManager.instance.register_command command.to_sym end URL = "http://gemcutter.org" unless defined?(URL) class Gem::StreamUI def ask_for_password(message) system "stty -echo" password = ask(message) system "stty echo" password end end
Version data entries
6 entries across 6 versions & 2 rubygems