-
Notifications
You must be signed in to change notification settings - Fork 23
/
hooks.gemspec
25 lines (20 loc) · 884 Bytes
/
hooks.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'hooks/version'
Gem::Specification.new do |s|
s.name = "hooks"
s.version = Hooks::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nick Sutterer"]
s.email = ["[email protected]"]
s.homepage = "http://nicksda.apotomo.de/2010/09/hooks-and-callbacks-for-ruby-but-simple/"
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.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency "uber", "~> 0.0.14"
s.add_development_dependency "minitest", ">= 5.4.1"
s.add_development_dependency "rake"
end