forked from travis-ci/travis-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
78 lines (61 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
source 'https://rubygems.org'
ruby '1.9.3' rescue nil
gem 'travis-core', git: 'git://github.com/travis-ci/travis-core', require: 'travis/engine'
gem 'travis-support', git: 'git://github.com/travis-ci/travis-support'
gem 'travis-sidekiqs', github: 'travis-ci/travis-sidekiqs', require: nil
gem 'rails', '~> 3.2.12'
gem 'execjs', '1.3.0'
gem 'rake'
gem 'bunny'
gem 'rack-ssl'
# app
gem 'refraction', '~> 0.2.0'
gem 'versionist', '~> 0.2.0'
gem 'devise', '~> 2.0.4'
# upgrading to newer versions of these gems caused new github accounts to not be able to
# sign in / create an account on our side
gem 'oauth2', '0.6.1'
gem 'omniauth-oauth2', '1.0.2'
gem 'omniauth-github', '1.0.1'
gem 'unobtrusive_flash', '~> 0.0.2'
# structures
gem 'json', '~> 1.6.3'
gem 'yajl-ruby', '~> 1.1.0'
gem 'rack-contrib', git: 'git://github.com/rack/rack-contrib', require: 'rack/contrib'
# db
gem 'pg', '~> 0.13.2'
# apis + metrics
gem 'backports', '~> 2.3.0'
gem 'gh', git: 'git://github.com/rkh/gh'
gem 'hubble', git: 'git://github.com/roidrage/hubble'
gem 'newrelic_rpm', '~> 3.3.0'
gem 'lograge', '~> 0.1.2'
# i18n
gem 'http_accept_language', '~> 1.0.2'
# heroku
gem 'unicorn', '~> 4.1.1'
group :development, :test do
gem 'thin', '~> 1.3.1'
gem 'travis-assets', git: 'https://github.com/travis-ci/travis-assets', require: 'travis/assets/railtie'
gem 'rake-pipeline', git: 'https://github.com/livingsocial/rake-pipeline.git'
gem 'rake-pipeline-web-filters', git: 'https://github.com/wycats/rake-pipeline-web-filters.git'
gem 'coffee-script'
gem 'compass'
# TODO why do we need these in development?
gem 'factory_girl', '~> 2.4.0'
gem 'forgery', '~> 0.5.0'
gem 'rspec-rails', '~> 2.10.0'
end
group :development do
gem 'foreman', '~> 0.36.0'
# gem 'debugger', platforms: :mri_19
end
group :test do
gem 'capybara', '~> 1.1.2'
gem 'database_cleaner', '~> 0.7.0'
gem 'mocha', '~> 0.10.0'
gem 'webmock', '~> 1.7.7'
gem 'guard'
gem 'guard-rspec'
gem 'rb-fsevent'
end