forked from davetron5000/gli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgli.gemspec
33 lines (29 loc) · 1.43 KB
/
gli.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
# Make sure we get the gli that's local
require File.join([File.dirname(__FILE__),'lib','gli','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'gli'
s.version = GLI::VERSION
s.author = 'David Copeland'
s.email = '[email protected]'
s.homepage = 'http://davetron5000.github.com/gli'
s.platform = Gem::Platform::RUBY
s.summary = 'Build command-suite CLI apps that are awesome.'
s.description = 'Build command-suite CLI apps that are awesome. Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = 'gli'
s.require_paths = ["lib"]
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'gli.rdoc']
s.rdoc_options << '--title' << 'Git Like Interface' << '--main' << 'README.rdoc'
s.bindir = 'bin'
s.rubyforge_project = 'gli'
s.add_development_dependency('rake', '~> 0.9.2.2')
s.add_development_dependency('rdoc', '~> 3.11')
s.add_development_dependency('rainbow', '~> 1.1.1')
s.add_development_dependency('clean_test')
s.add_development_dependency('cucumber', '1.2.3')
s.add_development_dependency('aruba', '0.5.1') # 0.5.3 randomly breaks with "LaunchError: no such file or directory" and only sometimes.
s.add_development_dependency('sdoc')
s.add_development_dependency('faker','1.0.0')
end