forked from thoughtworks/cruisecontrol.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcruisecontrolrb.gemspec
40 lines (35 loc) · 1.01 KB
/
cruisecontrolrb.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
require 'rake'
require 'pathname'
require File.expand_path('../config/application', __FILE__)
GEMSPEC = Gem::Specification.new do |s|
s.name = 'cruisecontrolrb'
s.summary = 'CruiseControl for Ruby. Keep it simple.'
s.version = CruiseControl::VERSION::STRING
s.description = <<-EOS
CruiseControl.rb provides simple continuous integration for any team or project,
with a focus on a pleasant out-of-the-box experience for Ruby developers.
EOS
s.author = 'ThoughtWorks, Inc.'
s.email = '[email protected]'
s.homepage = 'http://cruisecontrolrb.thoughtworks.com'
s.has_rdoc = false
s.bindir = "."
s.executables << "cruise"
s.add_dependency "bundler", "1.0.12"
s.files = FileList[
'[a-zA-Z0-9]*',
'app/**/*',
'bin/**/*',
'config/**/*',
'daemon/**/*',
'db/**/*',
'lib/**/*.rb',
'public/**/*',
'script/**/*',
'server_jar/**/*',
'tasks/**/*',
"vendor/bundle/**/*",
".bundle/*"
]
s.test_files = FileList['test/**/*']
end