├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── etc └── rbenv.d │ └── exec │ └── ~gem-src.bash ├── gem-src.gemspec ├── lib ├── gem │ └── src │ │ └── irregular_repositories.rb └── rubygems_plugin.rb ├── plugins.rb └── spec ├── gem-src_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /etc/rbenv.d/exec/~gem-src.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/etc/rbenv.d/exec/~gem-src.bash -------------------------------------------------------------------------------- /gem-src.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/gem-src.gemspec -------------------------------------------------------------------------------- /lib/gem/src/irregular_repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/lib/gem/src/irregular_repositories.rb -------------------------------------------------------------------------------- /lib/rubygems_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/lib/rubygems_plugin.rb -------------------------------------------------------------------------------- /plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/plugins.rb -------------------------------------------------------------------------------- /spec/gem-src_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/spec/gem-src_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amatsuda/gem-src/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------