forked from mysociety/alaveteli
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
92 lines (84 loc) · 3.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
source 'https://rubygems.org'
gem 'rails', '3.2.22.3'
gem 'pg', '~> 0.18.4'
# New gem releases aren't being done. master is newer and supports Rails > 3.0
gem 'acts_as_versioned', :git => 'https://github.com/technoweenie/acts_as_versioned.git', :ref => '63b1fc8529d028'
gem 'active_model_otp', :git => 'https://github.com/heapsource/active_model_otp.git', :ref => 'c342283fe564bf'
gem 'charlock_holmes', '~> 0.7.3'
gem 'dynamic_form', '~> 1.1.4'
# 4.1.0 has a bug in it which is fixed in a later version which does not have Ruby 1.9.3 support
gem 'exception_notification', '4.0.1'
gem 'fancybox-rails', '~> 0.3.1'
gem 'foundation-rails', '~> 5.5.3.2'
gem 'geoip', '~> 1.6.1'
gem 'gnuplot', '2.6.2'
gem 'htmlentities', '~> 4.3.4'
gem 'icalendar', '2.3.0'
gem 'jquery-rails', '~> 3.1.4'
gem 'jquery-ui-rails', '~> 5.0.0'
gem 'json', '~> 1.8.1'
gem 'holidays', '~> 2.2.0'
gem 'iso_country_codes', '~> 0.7.3'
gem 'mahoro', '~> 0.4'
gem 'memcache-client', '~> 1.8.5'
gem 'newrelic_rpm'
gem 'net-http-local', '~> 0.1.2', :platforms => [:ruby_19]
gem 'net-purge', '~> 0.1.0'
gem 'nokogiri', '~> 1.6'
gem 'open4', '~> 1.3.4'
gem 'rack', '~> 1.4.6'
gem 'rack-utf8_sanitizer', '~> 1.3.0'
gem 'rails-i18n', '~> 3.0.0'
gem 'recaptcha', '~> 0.4.0', :require => 'recaptcha/rails'
gem 'rmagick', '~> 2.15.0'
gem 'ruby-msg', '~> 1.5.0', :git => 'https://github.com/mysociety/ruby-msg.git', :ref => 'f9f928ed76c024b4bc3a08bc1a59beb62df36663'
gem 'sass', '3.4.21' # pinned because later versions cause problems (see blame)
gem 'secure_headers', '~> 3.1.2'
gem 'statistics2', '~> 0.54'
gem 'strip_attributes', :git => 'https://github.com/mysociety/strip_attributes.git', :branch => 'globalize3'
gem 'syslog_protocol', '~> 0.9.2'
gem 'thin', '~> 1.5.1'
gem 'vpim', '~> 13.11.11'
gem 'will_paginate', '~> 3.0.7' # 3.0.6 introduces Rails 4 support
gem 'xapian-full-alaveteli', '~> 1.2.21.1'
gem 'xml-simple', '~> 1.1.2', :require => 'xmlsimple'
gem 'zip', '~> 2.0.2'
# Gems related to internationalisation
gem 'gettext_i18n_rails', '~> 0.9.4' # Later versions cause error (see blame)
gem 'gettext', '~> 2.3.9'
gem 'globalize3', :git => 'https://github.com/globalize/globalize.git', :ref => '5fd95f2389dff1'
gem 'locale', '~> 2.0.8'
gem 'routing-filter', '~> 0.4.0'
gem 'unicode', '~> 0.4.4'
gem 'unidecoder', '~> 1.1.2'
group :assets do
gem 'bootstrap-sass', '~> 2.3.2.2'
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails', '3.0.2'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '~> 2.7.2'
gem 'therubyracer', '~> 0.12.2'
end
group :test do
gem 'fakeweb', '~> 1.3.0'
gem 'coveralls', :require => false
gem 'capybara', '~> 2.7.0'
gem 'delorean', '~> 2.1.0'
end
group :test, :development do
gem 'bullet', '~> 5.1.0'
gem 'factory_girl_rails', '~> 4.7.0'
gem 'rspec-activemodel-mocks', '~> 1.0.1'
gem 'rspec-rails', '~> 3.4.0'
gem 'test-unit', '~> 3.1.0'
gem 'spork-rails', '~> 4.0.0'
gem 'pry-debugger', '~> 0.2.3', :platforms => :ruby_19
end
group :development do
gem 'annotate', '~> 2.7.1'
gem 'capistrano', '~> 2.15.4'
gem 'capistrano-rbenv', '~> 1.0'
gem 'mailcatcher', '~> 0.5.12'
gem 'quiet_assets', '~> 1.1.0'
gem 'rdoc', '~> 3.12.2'
end