forked from qhwa/capistrano-hostmenu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcapistrano-hostmenu.gemspec
28 lines (23 loc) · 1.02 KB
/
capistrano-hostmenu.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
# Ensure we require the local version and not one we might have installed already
spec = Gem::Specification.new do |s|
s.name = "capistrano-hostmenu"
s.version = '0.1.3'
s.summary = "Capistrano plugin that prompt a text menu to choose target host."
s.author = "qhwa"
s.email = "[email protected]"
s.homepage = "https://github.com/qhwa/capistrano-hostmenu"
s.has_rdoc = false
s.extra_rdoc_files = %w(README.md)
s.rdoc_options = %w(--main README.md)
s.files = %w(README.md Rakefile Gemfile.lock Gemfile) +
Dir.glob("{bin,lib}/**/*") -
Dir.glob("spec/**/*")
s.require_paths << 'lib'
s.add_runtime_dependency('capistrano','>= 3.0.0')
s.add_runtime_dependency('colored', '> 0')
s.add_development_dependency("rake")
s.add_development_dependency("rake-compiler")
s.add_development_dependency("bundler")
s.add_development_dependency("yard")
s.add_development_dependency("rspec")
end