This repository has been archived by the owner on Jul 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGemfile
52 lines (46 loc) · 1.53 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
ruby '2.4.2'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
source 'https://rubygems.org'
source 'https://rails-assets.org'
gem 'activerecord-import', '~> 0.24.0', require: false
gem 'friendly_id', '~> 5.2', '>= 5.2.4'
gem 'geokit-rails', '~> 2.3', '>= 2.3.1'
gem 'google-maps', '~> 2.2'
gem 'health_check', '~> 3.0'
gem 'high_voltage', '~> 3.1'
gem 'jbuilder', '~> 2.7'
gem 'lograge', '~> 0.10.0'
gem 'pg', '~> 1.0'
gem 'puma', '~> 3.11', '>= 3.11.4'
gem 'rails', '5.1.6'
gem 'roo', '~> 2.7.1', require: false
gem 'sass', '~> 3.5', '>= 3.5.6'
gem 'sass-rails', '~> 5.0', '>= 5.0.7'
gem 'uglifier', '~> 4.1', '>= 4.1.11'
gem 'uswds-rails', '1.4.6'
gem 'will_paginate', '~> 3.1', '>= 3.1.6'
source 'https://rails-assets.org' do
gem 'rails-assets-html5shiv', '3.7.3'
gem 'rails-assets-jquery', '3.3.1'
gem 'rails-assets-leaflet', '1.3.1'
gem 'rails-assets-owl-carousel2', '2.2.1'
end
group :development, :test do
gem 'brakeman', '~> 4.3', '>= 4.3.1', require: false
gem 'byebug', '~> 10.0', '>= 10.0.2'
gem 'dotenv-rails', '~> 2.4'
gem 'factory_bot_rails', '~> 4.10'
gem 'rails-controller-testing', '~> 1.0', '>= 1.0.2'
gem 'rspec-rails', '~> 3.7', '>= 3.7.2'
gem 'rubocop', '~> 0.57.2', require: false
end
group :test do
gem 'capybara', '~> 2.18'
gem 'chromedriver-helper', '~> 1.2'
gem 'selenium-webdriver', '~> 3.12'
gem 'simplecov', '~> 0.16.1', require: false
gem 'simplecov-console', '~> 0.4.2', require: false
end