-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
65 lines (59 loc) · 1.58 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
source 'https://rubygems.org'
gem "bourbon", '2.1.1'
gem "builder", '3.0.0'
gem 'aws-ses', :require => 'aws/ses' # Needed by exception_notification
gem 'bootstrap-will_paginate', '0.0.7'
gem 'canable', '0.3.0'
gem 'devise', '2.2.3'
gem "devise-encryptable", "0.1.1"
gem 'exception_notification', '2.5.2'
gem 'jquery-rails', "1.0.19"
gem 'less-rails', '2.2.6'
gem 'lograge', '0.1.2'
gem 'money', '5.0.0'
gem 'mysql2', '0.3.11'
gem 'passphrase_entropy', git: 'https://github.com/alphagov/passphrase_entropy.git'
gem 'plek'
gem 'prawn', '0.12.0'
gem 'progressbar', '0.11.0'
gem 'rack-ssl-enforcer'
gem 'rails', '3.2.13'
gem 'simple_form', '2.0.4'
gem 'statsd-ruby', '1.0.0'
gem 'twitter-bootstrap-rails', '2.2.0'
gem 'uk_postcode'
gem 'unicorn', '4.3.1'
gem 'useragent', '0.4.16'
gem 'validate_as_email', '1.0.3'
gem 'weekdays', '1.0.2'
gem 'whenever', '0.7.3', :require => false
gem 'will_paginate', '3.0.3'
group :assets do
gem 'sass-rails', '3.2.5'
gem 'therubyracer', '0.10.1'
gem 'uglifier', '1.2.4'
end
group :development do
gem 'debugger', '1.1.4'
gem 'guard-rspec', '0.7.2'
gem 'powder', '0.1.8'
end
group :development, :test do
gem 'brakeman', '1.9.5'
gem 'ci_reporter', '1.8.4'
gem 'parallel_tests', '0.10.3'
gem 'rspec-rails', '2.12.2'
gem 'simplecov-rcov', '0.2.3'
end
group :test do
gem 'capybara', '2.0.2'
gem 'factory_girl_rails', '4.2.0'
gem 'launchy', '2.1.0'
gem 'pdf-reader', '1.1.1'
gem 'timecop', '0.5.9.1'
end
group :extract do
# gem "data-anonymization", :path => "../data-anonymization"
gem "data-anonymization", "0.5.3"
gem "sqlite3", "1.3.6"
end