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 1 vulnerable dependencies #162

Open
wants to merge 1 commit into
base: develop
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
36 changes: 18 additions & 18 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
source 'http://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# Bundle edge Rails instead: gem 'rails', '>= 5.0.2', github: 'rails/rails'
gem 'rails'

gem 'responders', '~> 2.0'
gem 'responders', '~> 2.3', '>= 2.3.0'
gem 'oj'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3'
# Use postgres database for Active Record
gem 'pg'
# 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'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'rails_12factor', group: :production
Expand All @@ -26,7 +26,7 @@ gem 'dalli', '~> 2.7'
gem 'connection_pool'

# used for rake countdown task
gem 'nokogiri'
gem 'nokogiri', '>= 1.10.4'
gem 'socksify'
gem 'tor_requests'

Expand All @@ -41,16 +41,16 @@ gem 'will_paginate'
gem 'will_paginate-bootstrap'

# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-rails', '>= 4.3.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'jquery-turbolinks'
gem 'jquery-turbolinks', '>= 2.1.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc

# datatable
gem 'jquery-ui-rails'
gem 'jquery-ui-rails', '>= 6.0.1'

# processes and thread
gem 'parallel'
Expand All @@ -73,13 +73,13 @@ gem 'sidekiq-failures'
gem 'sitemap_generator'

# meta tags generator
gem 'meta-tags'
gem 'meta-tags', '>= 2.4.0'

# performance analyzer
gem 'peek'
gem 'peek-sidekiq'
gem 'peek-dalli'
gem 'peek-pg'
gem 'peek', '>= 0.2.0'
gem 'peek-sidekiq', '>= 1.0.3'
gem 'peek-dalli', '>= 1.1.3'
gem 'peek-pg', '>= 1.3.0'

group :development, :test do
# debugger
Expand All @@ -91,13 +91,13 @@ group :development, :test do

# Test uses
gem 'cucumber'
gem 'cucumber-rails', :require => false
gem 'cucumber-rails', '>= 1.4.5', :require => false
gem 'pickle'
gem 'rspec-rails'
gem 'rspec-rails', '>= 3.5.2'
gem 'fuubar'
gem 'capybara'
gem 'capybara', '>= 2.13.0'
gem 'factory_girl', '~> 4.4.0'
gem 'factory_girl_rails'
gem 'factory_girl_rails', '>= 4.4.1'
gem 'factory_girl_rspec'
gem 'database_cleaner'

Expand All @@ -109,5 +109,5 @@ group :development, :test do
gem 'webmock'

# javascript headless testing
gem 'poltergeist'
gem 'poltergeist', '>= 1.14.0'
end
Loading