forked from travis-ci/travis-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
69 lines (53 loc) · 1.73 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
source :rubygems
gem 'rails', '~> 3.0.10'
gem 'rake', '~> 0.9.2'
gem 'pg', '~> 0.11.0'
gem 'yajl-ruby', '~> 0.8.2'
gem 'compass', '~> 0.11.3'
gem 'devise', '~> 1.4.2'
gem 'oa-oauth', '~> 0.2.6'
gem 'refraction', '~> 0.2.0'
gem 'unobtrusive_flash', '~> 0.0.2'
gem 'pusher', '~> 0.8.1'
gem 'octokit', :git => 'https://github.com/pengwynn/octokit.git', :ref => '463e08caa4f940045f7f'
gem 'silent-postgres', '~> 0.0.8'
gem 'hoptoad_notifier', '~> 2.4.11'
gem 'jammit', '~> 0.6.0'
gem 'unicorn', '~> 4.0.0', :platform => :ruby
gem 'SystemTimer', '~> 1.2.3', :platforms => :ruby_18
gem 'clockwork'
gem 'resque', '~> 1.17.1'
gem 'resque-heartbeat', :git => 'https://github.com/svenfuchs/resque-heartbeat.git', :ref => 'ba7a89f'
gem 'rabl', '~> 0.3.0'
gem 'jruby-openssl', :platforms => :jruby
gem 'newrelic_rpm', '~> 3.1.0'
group :test do
gem 'capybara', '~> 1.0.0'
gem 'database_cleaner'
gem 'factory_girl', '~> 1.3'
gem 'factory_girl_rails'
gem 'mocha'
gem 'test_declarative'
gem 'fakeredis', '~> 0.2.0'
gem 'webmock'
platforms :ruby_18 do
gem 'minitest'
gem 'minitest_tu_shim'
end
end
group :development, :test do
gem 'rspec-rails', '~> 2.6.1'
end
group :development do
platforms :mri_18 do
# required as linecache uses it but does not have it as a dep
gem "require_relative", "~> 1.0.1"
gem 'ruby-debug'
end
# sadly ruby-debug19 (linecache19) doesn't
# work with ruby-head, but we don't use this in
# development so this should cover us just in case
unless RUBY_VERSION == '1.9.3'
gem 'ruby-debug19', :platforms => :mri_19
end
end