-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroxanne.gemspec
38 lines (34 loc) · 1.58 KB
/
roxanne.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'roxanne/version'
Gem::Specification.new do |spec|
spec.name = "roxanne"
spec.version = Roxanne::VERSION
spec.authors = ["Jef Mathiot", "Patrice Izzo", "Fabrice Nourisson",
"Benjamin Severac", "Eric Hartmann"]
spec.email = ["[email protected]"]
spec.description = %q{Roxanne: publish your CI status to your device of choice}
spec.summary = %q{Aggregate the status of Continuous Integration jobs or other sources and
publish them}
spec.homepage = "http://github.com/servebox/roxanne"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'json'
spec.add_dependency 'daemon-spawn'
spec.add_dependency 'activesupport', '~> 3.0.0'
spec.add_dependency 'i18n', '~> 0.6.0'
spec.add_dependency 'taopaipai', '~> 0.1.1'
spec.add_dependency 'travis', '~> 1.6.8'
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.0.7"
spec.add_development_dependency "minitest-implicit-subject", "~> 1.4.0"
spec.add_development_dependency "rb-readline", "~> 0.5.0"
spec.add_development_dependency "guard-minitest", "~> 2.1.3"
spec.add_development_dependency "timecop"
spec.add_development_dependency "mocha"
end