Sha256: f826fb966df56bdaaa72bffa4f31a1f560094fe4a00ce400f6fb53827117d3bd
Contents?: true
Size: 497 Bytes
Versions: 6
Compression:
Stored size: 497 Bytes
Contents
$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed require 'rubygems/command_manager' require 'commands/abstract_command' %w[migrate 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