├── .document ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── VERSION ├── gem_git.gemspec ├── lib ├── gem_git.rb ├── gem_git │ └── helper.rb ├── rubygems │ └── commands │ │ ├── clone_command.rb │ │ └── fork_command.rb └── rubygems_plugin.rb └── test ├── helper.rb └── test_gem_git.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0 -------------------------------------------------------------------------------- /gem_git.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/gem_git.gemspec -------------------------------------------------------------------------------- /lib/gem_git.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/gem_git/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/lib/gem_git/helper.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/clone_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/lib/rubygems/commands/clone_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/fork_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/lib/rubygems/commands/fork_command.rb -------------------------------------------------------------------------------- /lib/rubygems_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/lib/rubygems_plugin.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_gem_git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm/gem_git/HEAD/test/test_gem_git.rb --------------------------------------------------------------------------------