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 7 vulnerabilities #43

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
36 changes: 18 additions & 18 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '~> 2.6.5'

gem 'aliyun-sdk', '~> 0.7.0'
gem 'aliyun-sdk', '~> 0.8.0'
gem 'api-pagination', '~> 4.8.2'

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

# storage related gems
gem 'carrierwave', '~> 2.1', '>= 2.1.0'
gem 'carrierwave', '~> 2.2', '>= 2.2.6'
# fog's core, shared behaviors without API and provider specifics
gem 'fog-core', '~> 2.1.0'
# alicloud support
gem 'fog-aliyun', '~> 0.3.5'
gem 'fog-aliyun', '~> 0.3.19'
# aws support (amazon)
gem 'fog-aws', '~> 3.5.2'
gem 'fog-aws', '~> 3.6.2'
# gcp support (google)
gem 'fog-google', '~> 1.9.1'
gem 'fog-google', '~> 1.10.0'

gem 'kycaid'
gem 'sidekiq', '>= 6.0.7'
gem 'sidekiq', '>= 6.1.2'
# 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', '~> 7.0.8', '>= 7.0.8.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 @@ -41,22 +41,22 @@ 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'
gem 'rack-cors', '~> 1.1.0'

# REST-like API framework for Ruby
gem 'grape', '~> 1.4'
gem 'grape', '~> 1.5', '>= 1.5.0'
gem 'grape-entity', '~> 0.8'
gem 'grape-swagger', '~> 1.2'
gem 'grape-swagger-entity', '~> 0.5'
gem 'grape_logging', '~> 1.8'
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 'bunny'
gem 'phonelib', '~> 0.6.45'
gem 'twilio-ruby', '~> 5.25.4'
gem 'twilio-ruby', '~> 5.26.0'
gem 'vault', '~> 0.1'
gem 'vault-rails', git: 'https://github.com/rubykube/vault-rails'
# Use Redis adapter to run Action Cable in production
Expand Down Expand Up @@ -87,24 +87,24 @@ 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 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end

group :test do
gem 'capybara', '>= 3.29.0'
gem 'capybara', '>= 3.34.0'
# gem 'selenium-webdriver'
# gem 'chromedriver-helper'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
gem 'rspec-rails', '~> 4.0', '>= 4.0.0'
gem 'shoulda-matchers', '~> 4.0.1.0'
gem 'rails-controller-testing', '>= 1.0.5'
end
Expand Down