forked from DFE-Digital/teaching-vacancies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
98 lines (80 loc) · 2.25 KB
/
Gemfile
File metadata and controls
98 lines (80 loc) · 2.25 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
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
source 'https://rubygems.org'
ruby '2.4.1'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.2.1'
gem 'puma', '~> 3.12'
gem 'pg', '~> 1.1'
gem 'elasticsearch-model'
gem 'faraday_middleware-aws-signers-v4'
gem 'friendly_id'
gem 'figaro'
gem 'httparty'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'turbolinks', '~> 5'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem 'addressable'
gem 'sanitize', '~> 4.6'
gem 'lograge'
gem 'colorize'
gem 'ipaddr'
gem 'geocoder'
gem 'redis'
gem 'omniauth', '~> 1.8'
gem 'omniauth_openid_connect', '~> 0.1'
gem 'breasal', '~> 0.0.1'
gem 'haml-rails'
gem 'kaminari'
gem 'roadie-rails'
gem 'simple_form'
gem 'rails-html-sanitizer', '~> 1.0.4', '>= 1.0.4' # Must be above this version due to CVE-2018-3741
gem 'gov_uk_date_fields', git: 'https://github.com/despo/gov_uk_date_fields.git',
branch: 'trigger-iphone-numeric-keyboard-for-new-gov-uk-ds'
gem 'xml-sitemap'
gem 'rollbar', '~> 2.17'
gem 'rubocop' # Not in Test group due to: https://github.com/chapmanu/imposter/issues/4
gem 'activerecord-session_store'
gem 'public_activity'
gem 'high_voltage', '~> 3.1'
gem 'google_drive', require: false
gem 'google-api-client'
gem 'browser'
gem 'sidekiq'
group :test, :development, :staging do
gem 'faker'
gem 'factory_bot_rails'
gem 'rails-controller-testing', '~> 1.0', '>= 1.0.2'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'launchy'
end
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'elasticsearch-extensions'
gem 'pry'
gem 'rspec-rails'
gem 'teaspoon-mocha'
gem 'coffee-rails'
gem 'timecop'
end
group :test do
gem 'capybara', '~> 3.7'
gem 'database_cleaner'
gem 'poltergeist'
gem 'rspec-collection_matchers'
gem 'webmock', '~> 3.4'
gem 'shoulda-matchers',
git: 'https://github.com/thoughtbot/shoulda-matchers.git',
branch: 'rails-5'
gem 'rack_session_access'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]