Skip to content

[Snyk] Fix for 1 vulnerabilities #36

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
22 changes: 11 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"
ruby "2.3.1"

#
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
# Bundle edge Rails instead: gem "rails", ">= 5.0.1", github: "rails/rails"
gem "rails"
gem "listen"

Expand All @@ -14,11 +14,11 @@ gem "pg"
gem "puma"

# Use SCSS for stylesheets
gem "sass-rails"
gem "sass-rails", ">= 5.0.6"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier"
# Use CoffeeScript for .js.coffee assets and views
gem "coffee-rails"
gem "coffee-rails", ">= 4.2.1"

# Turbolinks makes following links in your web application faster.
# Read more: https://github.com/turbolinks/turbolinks
Expand Down Expand Up @@ -54,7 +54,7 @@ gem "awesome_print"

group :development do
# Access an IRB console on exceptions page and /console in development
gem "web-console"
gem "web-console", ">= 3.4.0"
end

group :development, :test do
Expand All @@ -66,7 +66,7 @@ group :development, :test do
################################################################################
# Manage application processes
gem "foreman"
gem "factory_girl_rails"
gem "factory_girl_rails", ">= 4.7.0"

################################################################################
# Linters and Security
Expand All @@ -93,15 +93,15 @@ end

group :test do
gem "coveralls", require: false
gem "capybara"
gem "capybara-screenshot"
gem "capybara-webkit"
gem "capybara", ">= 2.7.1"
gem "capybara-screenshot", ">= 1.0.14"
gem "capybara-webkit", ">= 1.11.1"
gem "chromedriver-helper"
gem "database_cleaner"
gem "generator_spec"
gem "generator_spec", ">= 0.9.3"
gem "launchy"
gem "poltergeist"
gem "rspec-rails", "~> 3"
gem "poltergeist", ">= 1.11.0"
gem "rspec-rails", "~> 3", ">= 3.5.2"
gem "rspec-retry"
gem "selenium-webdriver", "<3.0.0"
end
Loading