forked from thoughtworks/cruisecontrol.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (30 loc) · 824 Bytes
/
Gemfile
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
source "http://rubygems.org"
gem "rails", "3.2.16"
gem "tzinfo"#, "0.3.27"
gem "rack"#, "1.2.3"
gem "bundler"#, "~> 1.0.12"
gem "httparty", "0.6.1"
gem "api_cache", "0.2.0"
gem "xml-simple", '1.0.16', :require => 'xmlsimple'
gem "rake", "~> 0.9.3"
gem "jquery-rails", '1.0.9'
gem "abstract", "1.0.0"
gem "xmpp4r"
gem "puma", '< 2.7.0' # 2.7.[01] breaks compatibility with ruby 1.8.7
gem "byebug"
group :development do
gem "rcov", '0.9.9', :platforms => [:ruby_18]
gem "mocha", :require => false #, "0.9.12", :require => false
gem "rack-test", :require => "rack/test"
end
platform :jruby do
gem 'jruby-openssl'
end
gem "googlecharts"
group :development do
gem 'powder'
end
group :test do
gem 'debugger', :platforms => :mri_19 unless ENV['TRAVIS'] == 'true'
end
gem 'system_timer', :platforms => :ruby_18