forked from kenn/sunzi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sunzi.gemspec
23 lines (20 loc) · 918 Bytes
/
sunzi.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = 'sunzi'
spec.version = '1.5.2' # retrieve this value by: Gem.loaded_specs['sunzi'].version.to_s
spec.authors = ['Kenn Ejima']
spec.email = ['[email protected]']
spec.homepage = 'http://github.com/kenn/sunzi'
spec.summary = %q{Server provisioning utility for minimalists}
spec.description = %q{Server provisioning utility for minimalists}
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'thor'
spec.add_runtime_dependency 'rainbow'
spec.add_runtime_dependency 'net-ssh'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest'
end