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 8 vulnerabilities #29

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ruby '~> 2.6.5'
gem 'aliyun-sdk', '~> 0.7.0'
gem 'api-pagination', '~> 4.8.2'

gem 'env-tweaks', '~> 1.0.0'
gem 'env-tweaks', '~> 1.0.1'

# storage related gems
gem 'carrierwave', '~> 2.1', '>= 2.1.0'
Expand All @@ -20,7 +20,7 @@ gem 'fog-aws', '~> 3.5.2'
gem 'fog-google', '~> 1.9.1'

gem 'kycaid'
gem 'sidekiq', '>= 6.0.7'
gem 'sidekiq', '>= 6.1.1'
# GLI
gem 'gli', '~> 2.19.0'
##
Expand All @@ -29,7 +29,7 @@ gem 'cancancan', '~> 2.3.0'

gem 'hiredis', '~> 0.6.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.4', '>= 5.2.4.4'
gem 'rails', '~> 6.1.7', '>= 6.1.7.1'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
Expand All @@ -43,14 +43,14 @@ gem 'maxmind-db', '~> 1.0'

gem 'kaminari', '>= 1.2.1'
gem 'peatio', '~> 0.4.4'
gem 'rack-cors', '~> 1.0.2'
gem 'rack-cors', '~> 1.0.6'

# REST-like API framework for Ruby
gem 'grape', '~> 1.4'
gem 'grape-entity', '~> 0.8'
gem 'grape-swagger', '~> 1.2'
gem 'grape-swagger-entity', '~> 0.5'
gem 'grape_logging', '~> 1.8'
gem 'grape', '~> 1.4', '>= 1.4.0'
gem 'grape-entity', '~> 0.8', '>= 0.8.1'
gem 'grape-swagger', '~> 1.2', '>= 1.2.1'
gem 'grape-swagger-entity', '~> 0.5', '>= 0.5.1'
gem 'grape_logging', '~> 1.8', '>= 1.8.3'
gem 'memoist', '~> 0.16'
gem 'jwt', '~> 2.2'
gem 'jwt-multisig', '~> 1.0', '>= 1.0.4'
Expand Down Expand Up @@ -101,7 +101,7 @@ group :development do
end

group :test do
gem 'capybara', '>= 3.29.0'
gem 'capybara', '>= 3.33.0'
# gem 'selenium-webdriver'
# gem 'chromedriver-helper'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
Expand Down