This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
61 lines (52 loc) · 1.42 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.7.1'
gem 'activeresource'
gem 'aws-sdk-core', '~> 2.9' # https://github.com/aws/aws-sdk-ruby/issues/1041
gem 'devise', '~> 3.4.0' # https://github.com/plataformatec/devise/issues/3624
gem 'elasticsearch', github: 'elastic/elasticsearch-ruby', branch: '5.x'
gem 'elasticsearch-persistence', github: 'elastic/elasticsearch-rails', branch: '5.x'
gem 'elasticsearch-model', github: 'elastic/elasticsearch-rails', branch: '5.x'
gem 'iso_country_codes'
gem 'jbuilder'
gem 'nokogiri'
gem 'rack-contrib'
gem 'rake'
gem 'sanitize'
gem 'htmlentities'
gem 'sidekiq'
gem 'sidekiq-unique-jobs'
gem 'haml'
gem 'charlock_holmes'
gem 'kramdown'
gem 'rouge', '1.11.1'
gem 'sass'
gem 'jquery-rails'
gem 'industry_mapping_client', git: 'https://github.com/GovWizely/industry_mapping_client.git'
gem 'taxonomy_parser', git: 'https://github.com/GovWizely/taxonomy_parser.git', ref: '6a1eb4'
gem 'restforce'
group :production do
gem 'airbrake'
gem 'newrelic_rpm'
end
group :development, :test do
gem 'rspec-rails'
gem 'thin'
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-remote'
end
group :development do
gem 'capistrano'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rubocop', '~> 0.58.2', require: false
end
group :test do
gem 'webmock'
gem 'vcr'
gem 'codeclimate-test-reporter', require: false
gem 'simplecov', require: false
gem 'capybara'
gem 'launchy'
gem 'shoulda-matchers'
end