-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathcijoe.gemspec
34 lines (29 loc) · 1.15 KB
/
cijoe.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
$LOAD_PATH.unshift 'lib'
require "cijoe/version"
Gem::Specification.new do |s|
s.name = "cijoe"
s.version = CIJoe::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "cijoe builds your builds."
s.homepage = "http://github.com/defunkt/cijoe"
s.email = "chris@ozmm.org"
s.authors = [ "Chris Wanstrath", "Josh Owens" ]
s.has_rdoc = false
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("test/**/*")
s.executables = %w( cijoe )
s.add_runtime_dependency 'choice'
s.add_runtime_dependency 'sinatra'
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'tinder', '>= 1.4.0'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'mocha'
s.description = <<desc
cijoe is a sinatra-based continuous integration server. It's like an
old rusty pickup truck: it might be smelly and gross, but it gets the
job done.
desc
end