Fix login button for battle net
This commit is contained in:
16
Gemfile
16
Gemfile
@@ -7,42 +7,42 @@ ruby '3.0.1'
|
||||
|
||||
# Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity.
|
||||
# It encourages beautiful code by favoring convention over configuration.
|
||||
gem 'rails', '~> 6.1.3', '>= 6.1.3.1'
|
||||
gem 'rails', '~> 6.1.4'
|
||||
# A set of common locale data and translations to internationalize and/or localize your Rails applications
|
||||
gem 'rails-i18n', '~> 6.0.0'
|
||||
# Use postgresql as the database for Active Record
|
||||
gem 'pg', '~> 1.1'
|
||||
# Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications
|
||||
gem 'puma', '~> 5.0'
|
||||
gem 'puma', '~> 5.4.0'
|
||||
# Use SCSS for stylesheets
|
||||
gem 'sass-rails', '>= 6'
|
||||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
||||
gem 'webpacker', '~> 5.0'
|
||||
# The speed of a single-page web application without having to write any JavaScript.
|
||||
gem 'turbo-rails'
|
||||
gem 'turbo-rails', '~> 0.6.0'
|
||||
# Use Redis adapter to run Action Cable in production
|
||||
gem 'redis', '~> 4.2.5'
|
||||
# Autoload dotenv in Rails
|
||||
gem 'dotenv-rails', '~> 2.7.6'
|
||||
# Use Active Model has_secure_password
|
||||
gem 'bcrypt', '~> 3.1.7'
|
||||
gem 'bcrypt', '~> 3.1.16'
|
||||
# Flexible authentication solution for Rails with Warden
|
||||
gem 'devise', '~> 4.8.0'
|
||||
# Tame Rails' multi-line logging into a single line per request
|
||||
gem 'lograge', '~> 0.11.2'
|
||||
# Stores and retrieves localized data through attributes on a Ruby class, with flexible support for different storage strategies
|
||||
gem 'mobility', '~> 1.1.1'
|
||||
gem 'mobility', '~> 1.1.3'
|
||||
# A generalized Rack framework for multiple-provider authentication.
|
||||
gem 'omniauth'
|
||||
gem 'omniauth', '~> 2.0.4'
|
||||
# Omniauth Strategy for Battle.net OAuth Login. For more info visit https://dev.battle.net
|
||||
gem 'omniauth-bnet', '~> 2.0.1', git: 'https://github.com/Dainii/omniauth-bnet'
|
||||
# This gem provides a mitigation against CVE-2015-9284
|
||||
gem 'omniauth-rails_csrf_protection'
|
||||
gem 'omniauth-rails_csrf_protection', '~> 1.0.0'
|
||||
# A Ruby wrapper around Blizzard's Game Data and Profile APIs
|
||||
gem 'rbattlenet', '~> 2.2.9', git: 'https://github.com/Dainii/rbattlenet'
|
||||
# A gem that provides Rails integration for the Sentry error logger
|
||||
gem 'sentry-rails', '~> 4.4.0'
|
||||
gem 'sentry-ruby', '~> 4.4.1'
|
||||
gem 'sentry-ruby', '~> 4.4.2'
|
||||
# Simple, efficient background processing for Ruby
|
||||
gem 'sidekiq', '~> 6.2.1'
|
||||
# Agnostic pagination in plain ruby
|
||||
|
||||
Reference in New Issue
Block a user