forked from openheritage/open-plaques-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·46 lines (35 loc) · 826 Bytes
/
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
source 'https://rubygems.org'
ruby "2.2.0"
gem 'rails', '4.1.6'
gem 'pg'
gem 'bcrypt', '~> 3.1.7'
gem 'curb'
gem 'nokogiri'
gem 'sanitize'
gem 'sass-rails', '~> 4.0.3'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'devise'
gem 'meta-tags'
gem 'will_paginate'
gem 'redcarpet'
gem 'commoner', :git => 'https://github.com/jnicho02/commoner.git', :branch => 'licence-details'
gem 'rollbar', '~> 1.4.4'
# gem 'rack-timeout'
gem 'puma'
gem 'oink'
gem 'rails_12factor'
group :development do
gem 'spring'
# gem 'lol_dba'
gem 'bullet'
gem 'meta_request'
end
group :test do
gem 'rspec', '~> 2.14.0'
gem 'rspec-rails', :group => :development
gem 'database_cleaner'
end
gem 'tzinfo-data'
gem 'dotenv-rails', :groups => [:development, :test]