├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.rake-0.8.7 ├── Gemfile.rake-0.9.2.2 ├── LICENSE ├── README.md ├── Rakefile ├── lib └── rake │ ├── hooks.rb │ └── hooks │ └── version.rb ├── rake-hooks.gemspec └── test └── test_rake_hooks.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.rake-0.8.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/Gemfile.rake-0.8.7 -------------------------------------------------------------------------------- /Gemfile.rake-0.9.2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/Gemfile.rake-0.9.2.2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rake/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/lib/rake/hooks.rb -------------------------------------------------------------------------------- /lib/rake/hooks/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/lib/rake/hooks/version.rb -------------------------------------------------------------------------------- /rake-hooks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/rake-hooks.gemspec -------------------------------------------------------------------------------- /test/test_rake_hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo/rake-hooks/HEAD/test/test_rake_hooks.rb --------------------------------------------------------------------------------