forked from strogo/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
66 lines (56 loc) · 1.37 KB
/
Gemfile
File metadata and controls
66 lines (56 loc) · 1.37 KB
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
source 'https://rubygems.org'
source 'https://BnrJb6FZyzspBboNJzYZ@gem.fury.io/govuk/'
group :router do
gem 'router-client', '2.0.3', require: 'router/client'
end
gem 'rails', '3.2.13'
gem 'rails-i18n', :git => "https://github.com/alphagov/rails-i18n.git", :branch => "welsh_updates"
gem 'unicorn', '4.3.1'
gem 'mustache'
gem 'aws-ses', :require => 'aws/ses'
gem 'gelf'
gem 'plek', '1.4.0'
gem 'lograge', '~> 0.1.0'
gem 'statsd-ruby', '1.0.0', :require => 'statsd'
gem 'rummageable', '0.5.0'
gem 'htmlentities', '4.3.1'
if ENV['SLIMMER_DEV']
gem 'slimmer', :path => '../slimmer'
else
gem 'slimmer', '3.19.0'
end
if ENV['CDN_DEV']
gem 'cdn_helpers', :path => '../cdn_helpers'
else
gem 'cdn_helpers', '0.9'
end
if ENV['API_DEV']
gem 'gds-api-adapters', :path => '../gds-api-adapters'
else
gem 'gds-api-adapters', '7.1.0'
end
gem "addressable"
gem 'exception_notification', '3.0.1'
gem 'logstasher', '0.2.5'
group :assets do
gem 'govuk_frontend_toolkit', '0.32.2'
gem 'sass', "3.2.1"
gem 'sass-rails', " ~> 3.2.3"
gem "therubyracer", "~> 0.9.4"
gem 'uglifier'
end
group :development do
gem 'quiet_assets'
end
group :test do
gem "mocha", '0.13.3', :require => false
gem "webmock", :require => false
gem 'simplecov'
gem 'simplecov-rcov'
gem 'ci_reporter'
gem 'test-unit'
gem 'capybara', '2.1.0'
gem 'poltergeist', '1.3.0'
gem "launchy"
gem "shoulda"
end