forked from GSA/search-gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
163 lines (158 loc) · 6.52 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
source 'https://rubygems.org'
# Temporarily limiting rake version:
# #http://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11
gem 'rake', '~> 10.0'
gem 'rails', '= 4.2.10'
gem 'rails-observers', '~> 0.1.5'
gem 'responders', '~> 2.0'
gem 'mysql2', '~> 0.3.0'
gem 'curb', '~> 0.9.4'
gem 'haml', '~> 5.0.4'
gem 'json', '~> 1.8.6'
gem 'will_paginate', '~> 3.1.6'
gem 'nokogiri', '~> 1.8.1'
gem 'bcrypt-ruby', '~> 3.1.5', :require => 'bcrypt'
gem 'authlogic', '~> 3.6.1'
gem 'airbrake', '~> 7.1.1'
gem 'yajl-ruby', '~> 1.3.1', :require => 'yajl'
gem 'redis', '~> 4.0.1'
gem 'redis-namespace', '~> 1.6.0'
gem 'redis-rails', '~> 5.0.2'
gem 'resque', '~> 1.27.4'
gem 'resque-priority', :git => 'https://github.com/GSA/resque-priority.git'
gem 'resque-timeout', '~> 1.0.0'
gem 'resque-lock-timeout', '~> 0.4.5'
gem 'resque-scheduler', '~> 4.3.1'
gem 'cocaine', '~> 0.5.8'
gem 'paperclip', '~> 5.2.0'
gem 'googlecharts', '~> 1.6.12'
gem 'sanitize', '~> 4.6.4'
gem 'tweetstream', '~> 2.6.1' # no longer maintained?
gem 'twitter', '~> 5.5'
gem 'flickraw', '~> 0.9.9'
gem 'active_scaffold', '~> 3.4.43'
gem 'active_scaffold_export', '~> 3.3.2'
gem 'us_states_select', '~> 1.2.0', :git => 'https://github.com/jeremydurham/us-state-select-plugin.git', :require => 'us_states_select'
gem 'mobile-fu', '~> 1.4.0'
gem "recaptcha", '~> 4.6.3', :require => "recaptcha/rails"
gem 'newrelic_rpm', '~> 5.0.0'
gem 'american_date', '~> 1.1.1'
gem 'sass', '~> 3.3.0'
gem 'sass-rails', '~> 5.0.7'
gem 'google_visualr', '~> 2.5.1'
gem 'oj', '~> 3.3.10'
gem 'faraday_middleware', '~> 0.12.2'
gem 'net-http-persistent', '~> 2.9.3'
gem 'rash_alt', git: 'https://github.com/MothOnMars/rash_alt', ref: 'bbd107061fbb066709523c68de4a217a76a8a945', require: 'rash'
gem 'geoip', '~> 1.6.3'
gem 'us_states', '~> 0.1.1'
gem 'htmlentities', '~> 4.3.4'
gem 'html_truncator', '~> 0.4.2'
gem 'addressable', '~> 2.5.2'
gem 'select2-rails', '~> 4.0.3'
gem 'turbolinks', '~> 5.0.1'
gem 'will_paginate-bootstrap', '~> 1.0.1'
gem 'virtus', '~> 1.0.5'
gem 'truncator', '~> 0.1.7'
gem 'em-http-request', '~> 1.1.5'
gem "validate_url", '= 0.2.0' # Newer versions use Addressable::URI for validation, which is more permissive than what we want
gem 'elasticsearch', '~> 6.0.0'
gem 'elasticsearch-watcher', '~> 0.0.1'
gem 'federal_register', '~> 0.6.3'
gem 'github-markdown', '~> 0.6.9'
gem 'google-api-client', '~> 0.19.1'
gem 'iso8601', '~> 0.10.1'
gem 'jbuilder', '~> 2.6.4'
gem 'rack-contrib', '~> 1.8.0'
gem 'sitelink_generator', git: 'https://github.com/GSA/sitelink_generator', ref: '2f78cd142547a2a87e500266f1ef4eb5e281cc6b'
gem 'typhoeus', '~> 1.3.0'
gem 'activerecord-validate_unique_child_attribute', '~> 0.1.0', require: 'active_record/validate_unique_child_attribute'
gem 'jwt', '~> 1.5.6'
gem 'grape', '~> 1.0.1'
gem 'grape-entity', '~> 0.6.0'
gem 'rack-cors', '~> 1.0.2', :require => 'rack/cors'
gem 'hashie', '~> 3.3.0'
gem 'retry_block', '~> 1.2.0'
gem 'aws-sdk', '< 3.0'
gem 'colorize', '~> 0.8.1'
gem 'dogstatsd-ruby', '~> 3.2.0'
gem 'lograge', '~> 0.7.1'
gem 'test-unit', '~> 3.2.7'
gem 'http', '~> 1.0'
gem 'robots_tag_parser', '~> 0.1.0', git: 'https://github.com/GSA/robots_tag_parser'
gem 'cld2', '~> 1.0.3', require: 'cld'
gem 'loofah', '~> 2.2.2'
gem 'protected_attributes', '~> 1.1.4'
# Using custom branch until https://github.com/brutuscat/medusa/issues/10 is merged
gem 'medusa', git: 'https://github.com/MothOnMars/medusa', branch: 'clean_urls'
# Robotex is required by Medusa. Specifying fork until https://github.com/chriskite/robotex/issues/4
# is resolved
gem 'robotex', git: 'https://github.com/MothOnMars/robotex'
# Using custom branch until https://github.com/lygaret/sitemaps/pull/4 is merged,
# and https://github.com/lygaret/sitemaps/issues/5 and https://github.com/lygaret/sitemaps/issues/6 are resolved
gem 'sitemaps_parser', require: 'sitemaps', git: 'https://github.com/MothOnMars/sitemaps', branch: 'discovery_fixes'
gem 'public_suffix', '~> 3.0.2'
gem 'counter_culture', '~> 1.10'
gem 'coffee-rails', '~> 4.2.2'
gem 'uglifier', '~> 4.1.2'
gem 'less-rails-bootstrap', '~> 3.3.5'
gem 'compass-rails', '~> 2.0.5'
gem 'compass-blueprint', '~> 1.0.0'
gem 'jquery-ui-rails', '~> 6.0.1'
gem 'jquery-rails', git: 'https://github.com/GSA/jquery-rails', ref: 'c0c56208f57746a4bc63431d5e771cea4486efca'
gem 'therubyracer', '~> 0.12.3'
gem 'yui-compressor', '~> 0.12.0'
gem 'twitter-typeahead-rails', '~> 0.11.1'
# Why do we have two versions of Font Awesome?
# One is for general use around the app, in places where
# web fonts are expected to work...
gem 'font-awesome-rails', '~> 4.7.0'
# ... and one is for the admin area only, where web fonts
# may be blocked due to government security policy. For
# this area we use a restricted subset of Font Awesome 4.3.x
# icons compiled into SVG/CSS+PNG using Grunticon. See
# https://github.com/gsa/font-awesome-grunticon-rails
# for instructions on how to add more icons to this set
gem 'font-awesome-grunticon-rails', git: 'https://github.com/gsa/font-awesome-grunticon-rails', ref: '8ad9734a65f7e2d2de934bebe4ee7b460734f96e'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development do
gem 'web-console', '~> 2.0'
gem 'spring', '~> 2.0'
end
group :development, :test do
gem 'rspec-rails', '~> 3.7.2'
gem 'rspec-json_expectations', '~> 2.1.0'
gem 'rspec-its', '~> 1.2.0'
gem 'email_spec', '~> 2.1.1'
gem 'database_cleaner', '~> 1.6.2'
gem 'capybara', '~> 2.17.0'
gem 'launchy', '~> 2.4.3'
gem 'thin', '~> 1.7'
gem 'i18n-tasks', '~> 0.9.19'
gem 'pry-byebug', '~> 3.5'
# Updating rubocop? Update & run mry to ensure rubocop.yml is updated:
# https://github.com/pocke/mry#usage (include the target version to add new cops)
# Also bump the rubocop channel in .codeclimate.yml:
# https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
gem 'rubocop', '0.52.1'
gem 'faker', '~> 1.8'
gem 'pry-rails', '~> 0.3.6'
gem 'awesome_print'
gem 'mry', '~> 0.52.0'
end
group :test do
gem 'simplecov', '~> 0.15.1', require: false
gem 'cucumber-rails', '~> 1.5.0', require: false
gem 'resque_spec', '~> 0.17.0'
gem 'poltergeist', '~> 1.17.0'
gem 'shoulda-matchers', '~> 3.1.2'
gem 'shoulda-kept-assign-to', '~> 1.1.0'
gem 'vcr', '~> 4.0'
gem 'webmock', '~> 3.1.1'
gem 'rspec-activemodel-mocks', '~> 1.0.3'
gem 'timecop', '~> 0.9.1'
gem 'rspec_junit_formatter', '~> 0.3.0'
gem 'test_after_commit', '~> 1.1.0' # Needed before rails5 https://github.com/grosser/test_after_commit
end