├── .gitignore ├── .travis.yml ├── CHANGES.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── hooks.gemspec ├── lib ├── hooks.rb └── hooks │ ├── hook.rb │ ├── inheritable_attribute.rb │ ├── instance_hooks.rb │ └── version.rb └── test ├── hook_test.rb ├── hooks_test.rb ├── instance_hooks_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/Rakefile -------------------------------------------------------------------------------- /hooks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/hooks.gemspec -------------------------------------------------------------------------------- /lib/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/lib/hooks.rb -------------------------------------------------------------------------------- /lib/hooks/hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/lib/hooks/hook.rb -------------------------------------------------------------------------------- /lib/hooks/inheritable_attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/lib/hooks/inheritable_attribute.rb -------------------------------------------------------------------------------- /lib/hooks/instance_hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/lib/hooks/instance_hooks.rb -------------------------------------------------------------------------------- /lib/hooks/version.rb: -------------------------------------------------------------------------------- 1 | module Hooks 2 | VERSION = "0.4.1" 3 | end 4 | -------------------------------------------------------------------------------- /test/hook_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/test/hook_test.rb -------------------------------------------------------------------------------- /test/hooks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/test/hooks_test.rb -------------------------------------------------------------------------------- /test/instance_hooks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/test/instance_hooks_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apotonick/hooks/HEAD/test/test_helper.rb --------------------------------------------------------------------------------