upgraded hooks to 0.3.3; integrated custom changes as made for 0.2.0

This commit is contained in:
Nico Hagenburger 2014-02-01 23:45:46 +01:00
parent 6ad90766a7
commit 247a152d39
25 changed files with 805 additions and 368 deletions

View file

@ -1,22 +0,0 @@
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'hooks'
Gem::Specification.new do |s|
s.name = "hooks"
s.version = Hooks::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nick Sutterer"]
s.email = ["apotonick@gmail.com"]
s.homepage = "http://nicksda.apotomo.de/tag/hooks"
s.summary = %q{Generic hooks with callbacks for Ruby.}
s.description = %q{Declaratively define hooks, add callbacks and run them with the options you like.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency "shoulda"
s.add_development_dependency "rake"
end