forked from eproxus/opsworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opsworks.gemspec
35 lines (29 loc) · 1.18 KB
/
opsworks.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
# coding: utf-8
root = File.expand_path('..', __FILE__)
lib = File.expand_path('lib', root)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'opsworks/meta'
Gem::Specification.new do |spec|
spec.name = "opsworks"
spec.version = OpsWorks::VERSION
spec.authors = OpsWorks::AUTHORS
spec.email = OpsWorks::EMAIL
spec.description = OpsWorks::DESCRIPTION
spec.summary = OpsWorks::SUMMARY
spec.homepage = "https://github.com/eproxus/opsworks"
spec.license = "MIT"
ignores = File.readlines('.gitignore').grep(/\S+/).map { |s| s.chomp }
spec.files = Dir["**/*"].reject do |f|
File.directory?(f) || ignores.any? { |i| File.fnmatch(i, f) }
end
spec.files += ['.gitignore']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "inifile", "~> 2.0.2"
spec.add_dependency "aws-sdk", "~> 1.11.3"
spec.add_dependency "trollop", "~> 2.0"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "awesome_print"
end