This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
102 lines (80 loc) · 3.09 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
93
94
95
96
97
98
99
100
101
102
source 'https://rubygems.org'
ruby '~> 2.6'
gem 'rake', '~> 13.1'
gem 'rails', '~> 4.2'
gem 'dotenv-rails', '~> 2.8'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', '~> 0.12', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.6'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.9'
gem 'sdoc', '~> 2.6', group: :doc
gem 'foreman', '~> 0.87'
group :production do
gem 'thin', '~> 1.8'
gem 'rails_12factor', '~> 0.0'
gem 'puma', '~> 6.4'
end
group :development, :test do
gem 'rspec-rails', "< 4" # version 4 requires rails 5
gem 'cucumber-rails', '~> 1.4', require: false
gem 'database_cleaner', '~> 1.99'
gem 'coveralls', '~> 0.8', require: false
gem 'simplecov', '~> 0.16'
gem 'guard-rspec', '~> 4.7'
gem 'guard-cucumber', '~> 3.0'
gem 'guard-bundler', '~> 2.2'
gem 'webmock', '~> 3.19', require: false
gem 'pry', '~> 0.14'
gem 'timecop', '~> 0.9'
gem 'factory_bot_rails', '~> 5.2'
gem 'faker', '~> 2.2'
gem 'poltergeist', '~> 1.6'
gem 'vcr', '~> 6.2'
gem 'cucumber-api-steps', require: false, git: 'https://github.com/Data-Liberation-Front/cucumber-api-steps.git', branch: 'feature-test-content-type'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.6'
end
group :development do
gem 'web-console', '~> 3.3'
gem 'spring', '~> 2.1'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
gem 'bootstrap-sass', '~> 3.4'
gem 'rack-google-analytics', '~> 1.2'
gem 'mongo', '~> 2.1', git: 'https://github.com/Data-Liberation-Front/mongo-ruby-driver.git', ref: "212-with-authsource-fix"
gem 'mongoid', '~> 5.1'
gem 'kaminari-mongoid', '~> 1.0'
gem 'kaminari', '~> 1.2'
gem 'bootstrap-kaminari-views', '~> 0.0'
gem 'data_kitten', git: 'https://github.com/Data-Liberation-Front/data_kitten.git', ref: "e343510bd15e3329c1f2fab35035e248195348be", require: false
gem 'rubyzip', '~> 2.3'
gem 'csvlint', '~> 1.2'
gem 'datapackage', '0.0.4' # temporarily pinned to avoid breaking the build
gem 'rest-client', '~> 2.0'
gem 'nokogiri', '~> 1.15'
gem 'airbrake', '~> 11.0'
gem 'font-awesome-rails', '~> 4.7'
gem 'sidekiq', '~> 4.2'
gem 'data_uri', '~> 0.1'
gem 'jquery-dotdotdot-rails', '~> 1.6'
gem 'alternate_rails', git: 'https://github.com/Data-Liberation-Front/alternate-rails.git', ref: 'v4.2.0'
gem 'rack-cors', '~> 1.0'
gem 'resumable_upload', git: 'https://github.com/Data-Liberation-Front/resumable-upload.git', ref: 'v0.2.0'
gem 'pusher', '~> 2.0'
gem 'cloudflare', '~> 2.1'
gem "racc", "1.7.3" # temporary pin to build on ruby 2.4, can remove when ruby is upgraded