-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathexecutable-hooks.gemspec
More file actions
28 lines (23 loc) · 945 Bytes
/
executable-hooks.gemspec
File metadata and controls
28 lines (23 loc) · 945 Bytes
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
#!/usr/bin/env ruby
# -*- encoding: utf-8 -*-
Kernel.load(File.expand_path("../lib/executable-hooks/version.rb", __FILE__))
Gem::Specification.new do |s|
s.name = "executable-hooks"
s.version = ExecutableHooks::VERSION
s.license = 'Apache-2.0'
s.authors = ["Michal Papis"]
s.email = ["mpapis@gmail.com"]
s.homepage = "https://github.com/rvm/executable-hooks"
s.summary = %q{
Hook into rubygems executables allowing extra actions to be taken before executable is run.
}
s.post_install_message = <<-MESSAGE
# In case of problems run the following command to update binstubs:
gem regenerate_binstubs
MESSAGE
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.extensions = %w( ext/wrapper_installer/extconf.rb )
s.executables = %w( executable-hooks-uninstaller )
s.add_development_dependency "tf", "~>0.4"
end