├── .gitignore ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── bin └── proteus ├── lib ├── proteus.rb └── proteus │ ├── kit.rb │ ├── repos.rb │ └── version.rb ├── proteus-kits.gemspec └── spec ├── proteus_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *gem 2 | .DS_store 3 | Gemfile.lock 4 | pkg 5 | tmp 6 | spec/dummy 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/proteus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/bin/proteus -------------------------------------------------------------------------------- /lib/proteus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/lib/proteus.rb -------------------------------------------------------------------------------- /lib/proteus/kit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/lib/proteus/kit.rb -------------------------------------------------------------------------------- /lib/proteus/repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/lib/proteus/repos.rb -------------------------------------------------------------------------------- /lib/proteus/version.rb: -------------------------------------------------------------------------------- 1 | module Proteus 2 | VERSION = "0.4" 3 | end 4 | -------------------------------------------------------------------------------- /proteus-kits.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/proteus-kits.gemspec -------------------------------------------------------------------------------- /spec/proteus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/spec/proteus_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/proteus/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------