-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtdl.gemspec
36 lines (30 loc) · 1.17 KB
/
tdl.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
36
# -*- encoding: utf-8 -*-
GEM_NAME = 'tdl'
PKG_VERSION = '0.0.5'
PKG_FILES =
Dir.glob('{lib,specs}/**/*.rb') +
Dir.glob('data/*') +
['LICENSE', 'Rakefile', 'README.md', "tdl-config.yml"]
Gem::Specification.new do |s|
s.name = GEM_NAME
s.version = PKG_VERSION
s.files = PKG_FILES
s.executables = Dir.glob('bin/*.rb').collect { |e| e.gsub(/bin\//, '') }
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.8.1'
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.3")
s.add_development_dependency('rspec', '~> 2.11.0')
s.add_runtime_dependency('thor')
s.add_runtime_dependency('nokogiri')
s.add_runtime_dependency('pkgwat')
s.add_runtime_dependency('colored')
s.add_runtime_dependency('deltacloud-client')
s.requirements = ['deltacloud is required to launch etdls against cloud instances',
'imagefactory is required to build images from tdls']
s.author = "Mo Morsi"
s.email = "[email protected]"
s.date = %q{2013-03-12}
s.description = %q{Aeolus Template Description Language Tools}
s.summary = %q{Aeolus tdl-tools}
s.homepage = %q{http://aeolusproject.org/}
end