forked from vmware-archive/thrust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththrust.gemspec
45 lines (44 loc) · 1.46 KB
/
thrust.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
37
38
39
40
41
42
43
44
45
require 'rake'
Gem::Specification.new do |s|
s.name = 'thrust'
s.version = '0.7.0'
s.summary = 'Thrust is a collection of rake tasks for iOS development and deployment'
s.description = 'Thrust provides a collection of rake tasks for iOS projects. These include tasks for running Cedar test suites and for building iOS app archives for deployment.'
s.authors = [
'Aaron Levine',
'Aaron VonderHaar',
'Andrew Bruce',
'Andrew Kitchen',
'Brandon Liu',
'Brian Butz',
'Can Berk Guder',
'Eugenia Dellapenna',
'Jeff Hui',
'Joe Masilotti',
'Johnathon Britz',
'Jonathan Barnes',
'Michael McCormick',
'Molly Trombley-McCann',
'Philip Kuryloski',
'Rachel Bobbins',
'Raphael Weiner',
'Sheel Choksi',
'Tyler Schultz',
'Wiley Kestner'
]
s.email = '[email protected]'
s.files = FileList['lib/**/**.rb', 'lib/**/*.rake', 'lib/**/*.yml'].to_a
s.homepage = 'http://github.com/pivotal/thrust'
s.default_executable = 'thrust'
s.require_paths = ['lib']
s.executables = ['thrust']
s.license = 'MIT'
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'colorize', '~> 0.6'
s.add_runtime_dependency 'auto_tagger', '~> 0.2'
s.add_runtime_dependency 'rake', '~> 10.1'
s.add_runtime_dependency 'nori', '~> 2.4'
s.add_development_dependency 'fakefs', '~> 0.5'
s.add_development_dependency 'rspec', '3.1.0'
s.add_development_dependency 'timecop', '~> 0.7'
end