-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-hooks.gemspec
35 lines (25 loc) · 966 Bytes
/
ruby-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
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env ruby
# -*- encoding: utf-8 -*-
# stub: ruby-hooks ruby lib
=begin
Copyright 2014 Michal Papis <[email protected]>
See the file LICENSE for copying permission.
=end
lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)
require "ruby-hooks/version"
Gem::Specification.new do |spec|
spec.name = "ruby-hooks"
spec.version = ::RubyHooks::VERSION
spec.licenses = ["MIT"]
spec.authors = ["Michal Papis"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/remote-exec/ruby-hooks"
spec.summary = "Helpers for multiple publish/subscribe hooks"
spec.required_ruby_version = ">=1.9.3"
spec.add_dependency("yard-ruby-hooks", "~>1.0", ">=1.0.1")
spec.add_development_dependency("minitest", "~>5.4")
spec.add_development_dependency("rake", "~>10.3")
spec.files = Dir.glob("lib/**/*.rb")
spec.test_files = Dir.glob("test/**/*.rb")
end