├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── examples └── model.rb ├── lib ├── method_hooks.rb └── method_hooks │ └── version.rb ├── method_hooks.gemspec └── spec ├── lib └── method_hooks_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /examples/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/examples/model.rb -------------------------------------------------------------------------------- /lib/method_hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/lib/method_hooks.rb -------------------------------------------------------------------------------- /lib/method_hooks/version.rb: -------------------------------------------------------------------------------- 1 | module MethodHooks 2 | VERSION = "1.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /method_hooks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/method_hooks.gemspec -------------------------------------------------------------------------------- /spec/lib/method_hooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/spec/lib/method_hooks_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbonetti/method_hooks/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------