├── .gitignore ├── README.md ├── gem-fast.gemspec └── lib ├── gem-fast.rb ├── gem-fast ├── command.rb ├── remote_fetcher.rb ├── utils.rb └── version.rb └── rubygems_plugin.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/README.md -------------------------------------------------------------------------------- /gem-fast.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/gem-fast.gemspec -------------------------------------------------------------------------------- /lib/gem-fast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/lib/gem-fast.rb -------------------------------------------------------------------------------- /lib/gem-fast/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/lib/gem-fast/command.rb -------------------------------------------------------------------------------- /lib/gem-fast/remote_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/lib/gem-fast/remote_fetcher.rb -------------------------------------------------------------------------------- /lib/gem-fast/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/lib/gem-fast/utils.rb -------------------------------------------------------------------------------- /lib/gem-fast/version.rb: -------------------------------------------------------------------------------- 1 | module GemFast 2 | VERSION = '0.0.6.3' 3 | end 4 | -------------------------------------------------------------------------------- /lib/rubygems_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazuiba/gem-fast/HEAD/lib/rubygems_plugin.rb --------------------------------------------------------------------------------