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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Fix for 2 vulnerabilities #36

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 16 additions & 16 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ 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'
gem 'carrierwave', '~> 2.1', '>= 2.1.1'
# fog's core, shared behaviors without API and provider specifics
gem 'fog-core', '~> 2.1.0'
# alicloud support
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.5'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
Expand All @@ -41,19 +41,19 @@ gem 'mini_racer', platforms: :ruby

gem 'maxmind-db', '~> 1.0'

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

# 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.5', '>= 1.5.0'
gem 'grape-entity', '~> 0.8', '>= 0.8.2'
gem 'grape-swagger', '~> 1.3', '>= 1.3.0'
gem 'grape-swagger-entity', '~> 0.5', '>= 0.5.2'
gem 'grape_logging', '~> 1.8', '>= 1.8.4'
gem 'memoist', '~> 0.16'
gem 'jwt', '~> 2.2'
gem 'jwt-multisig', '~> 1.0', '>= 1.0.4'
gem 'jwt-multisig', '~> 1.0', '>= 1.0.5'
gem 'bunny'
gem 'phonelib', '~> 0.6.45'
gem 'twilio-ruby', '~> 5.25.4'
Expand All @@ -64,7 +64,7 @@ gem 'redis', '~> 4.0', :require => ['redis', 'redis/connection/hiredis']

gem 'bcrypt', '~> 3.1'
# Email validators. Lock at 1.6.0 to use /strict dependency
gem 'email_validator', '= 1.6.0', require: 'email_validator/strict'
gem 'email_validator', '= 2.0.0', require: 'email_validator/strict'

gem 'countries', require: 'countries/global'
gem 'browser', require: "browser/browser"
Expand All @@ -87,15 +87,15 @@ gem 'pry-rails'
group :development, :test do
# Call 'byebug' or 'binding.pry' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'factory_bot_rails', '~> 4.11', '>= 4.11.1'
gem 'factory_bot_rails', '~> 5.0', '>= 5.0.0'
gem 'faker', '~> 2.1'
end

group :development do
gem 'grape_on_rails_routes', '~> 0.3.2'
gem 'web-console', '>= 3.7.0'
gem 'web-console', '>= 4.0.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'annotate', '~> 2.7', '>= 2.7.5'
gem 'annotate', '~> 3.0', '>= 3.0.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
Expand All @@ -104,8 +104,8 @@ group :test do
gem 'capybara', '>= 3.29.0'
# gem 'selenium-webdriver'
# gem 'chromedriver-helper'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
gem 'shoulda-matchers', '~> 4.0.1.0'
gem 'rspec-rails', '~> 4.0', '>= 4.0.0'
gem 'shoulda-matchers', '~> 4.1.0.0'
gem 'rails-controller-testing', '>= 1.0.5'
end

Expand Down