Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Fix for 74 vulnerabilities #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 34 additions & 34 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
source 'https://rubygems.org'
ruby '2.5.1'

gem 'rails', '~> 4.2'
gem 'rails', '~> 6.1', '>= 6.1.7.3'

# front-end
gem 'bootstrap-sass', '~> 3.4.1'
gem 'bourbon', '~> 4.2.7'
gem 'bower', '~> 0.0.5'
gem 'coffee-rails', '~> 4.2'
gem 'coffee-rails', '~> 4.2', '>= 4.2.2'
gem 'compass', '~> 1.0.3'
gem 'hamlit', '~> 2.7'
gem 'jquery-rails', '~> 4.2'
gem 'jquery-rails', '~> 4.4', '>= 4.4.0'
gem 'jquery-turbolinks', '~> 2.1.0'
gem 'nav_lynx', '~> 1.1.1'
gem 'sass-rails', '~> 5.0'
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
# gem 'sassc', '~> 1.8'
gem 'turbolinks', '~> 5.0'
gem 'uglifier', '~> 3.0'

# charts
gem 'groupdate', '~> 3.0'
gem 'groupdate', '~> 3.2', '>= 3.2.1'

# file handling
gem 'carrierwave', '~> 0.11.2'
gem 'carrierwave', '~> 1.3.2'
gem 'mini_magick', '~> 4.9'

# security & auth
Expand All @@ -46,75 +46,75 @@ gem 'readthis', '~> 2.2' # cool new redis client http://sorentwo.com/2015/07/20/
gem 'mandrill-api', '~> 1.0.53'

# background jobs
gem 'sidekiq', '~> 5.1'
gem 'sidekiq', '~> 6.2', '>= 6.2.1'

# miscelaneous
gem 'country_select', '~> 2.5'
gem 'countries', require: 'countries/global'
gem 'figaro', '~> 1.1.1'
gem 'jbuilder', '~> 2.6'
gem 'kaminari', '~> 0.17.0'
gem 'redcarpet', '~> 3.3'
gem 'jbuilder', '~> 2.7', '>= 2.7.0'
gem 'kaminari', '~> 1.2.1'
gem 'redcarpet', '~> 3.5', '>= 3.5.1'
gem 'ruby-oembed', '~> 0.10.1'
gem 'sequenced', '~> 3.1'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'social_shares', '~> 0.3.2'
gem 'sequenced', '~> 3.1', '>= 3.1.1'
gem 'sdoc', '~> 1.0.0', group: :doc
gem 'social_shares', '~> 0.3.4'
gem 'tumblr_client', '~> 0.8.5'

# localization
gem 'rails-i18n', '~> 4.0.4' # needs Rails 5 to update
gem 'rails-i18n', '~> 6.0.0' # needs Rails 5 to update

# performance & monitoring
gem 'airbrake', '~> 5.6'
gem 'skylight'

# server & deployment
gem 'pg', '~> 0.18.4'
gem 'puma', '~> 3.12'
gem 'puma', '~> 4.3', '>= 4.3.12'

group :development do
gem 'annotate', '~> 2.7'
gem 'better_errors'
gem 'annotate', '~> 2.7', '>= 2.7.5'
gem 'better_errors', '>= 2.8.0'
gem 'binding_of_caller', '~> 0.7.2'
gem 'brakeman', '~> 3.3'
gem 'bullet', '~> 5.3'
gem 'derailed_benchmarks', '~> 1.3'
gem 'bullet', '~> 5.7', '>= 5.7.5'
gem 'derailed_benchmarks', '~> 1.3', '>= 1.3.4'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'gem_bench', require: false
gem 'immigrant', '~> 0.3.5'
gem 'letter_opener', '~> 1.4'
gem 'immigrant', '~> 0.3.6'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'letter_opener', '~> 1.6', '>= 1.6.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'memory_profiler', '~> 0.9.6'
gem 'meta_request', '~> 0.4.0'
gem 'meta_request', '~> 0.7.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'populator', '~> 1.0.0'
gem 'sinatra', '~> 1.4.7' # for Sidekiq monitoring https://github.com/mperham/sidekiq/wiki/Monitoring
gem 'rails-footnotes', '~> 4.1'
gem 'rails_best_practices', '~> 1.17'
gem 'sinatra', '~> 2.2.3' # for Sidekiq monitoring https://github.com/mperham/sidekiq/wiki/Monitoring
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'rails-footnotes', '~> 4.1', '>= 4.1.8'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem rails-footnotes should appear before sinatra.
Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'rails_best_practices', '~> 1.19', '>= 1.19.2'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

# benchmarking
gem 'stackprof', '~> 0.2.9'
gem 'web-console', '~> 3.3'
gem 'web-console', '~> 3.3', '>= 3.3.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

end

group :development, :test do
gem 'ffaker', '~> 2.2'
gem 'jazz_fingers', '~> 4.0'
gem 'rspec-rails', '~> 3.5'
gem 'rspec-rails', '~> 3.7', '>= 3.7.2'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'spring', '~> 1.7'
end

group :test do
gem 'capybara', '~> 3.3'
gem 'capybara-screenshot', '~> 1.0'
gem 'capybara-webkit', '~> 1.15'
gem 'capybara', '~> 3.31', '>= 3.31.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'capybara-screenshot', '~> 1.0', '>= 1.0.24'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'capybara-webkit', '~> 1.15', '>= 1.15.1'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'codeclimate-test-reporter', '~> 0.6.0', require: nil
gem 'database_cleaner', '~> 1.5'
gem 'factory_girl_rails', '~> 4.7'
gem 'factory_girl_rails', '~> 4.9', '>= 4.9.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'guard-rspec', '~> 4.7'
gem 'shoulda-matchers', '~> 3.1'
gem 'webmock', '~> 2.1'
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.2'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'webmock', '~> 2.3', '>= 2.3.2'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'vcr', '~> 3.0'
end

group :production do
gem 'bonsai-elasticsearch-rails', '~> 0.0.4'
gem 'fog', '~> 1.36'
gem 'fog', '~> 1.42', '>= 1.42.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

gem 'rails_12factor', '~> 0.0.3'
end