forked from davetron5000/gli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gli.gemspec
34 lines (30 loc) · 1.37 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
33
# 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 = 'davidcopeland@naildrivin5.com'
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')
s.add_development_dependency('gherkin')
s.add_development_dependency('aruba')
s.add_development_dependency('sdoc')
s.add_development_dependency('faker','1.0.0')
end