You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ruby '2.6.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Active Model has_secure_password
gem 'bcrypt', '~> 3.1.7'
gem 'graphql', '1.9.17'
gem 'devise', '4.7.2'
gem 'devise_token_auth', '1.1.4'
gem 'omniauth', '~> 1.9', '>= 1.9.1'
gem 'rack-cors', '~> 1.0', '>= 1.0.5'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'graphiql-rails', '1.7.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Within mailcatcher I received the confirmation email and followed the Confirm my account link. The request goes to ConfirmationsController#show where a NoMethodError is raised. Specifically, undefined method rails51?' for Devise:Module`
Seems the devise gem needs to be bumped?
The text was updated successfully, but these errors were encountered:
api
namspace and scopev1
.Stack trace
Gemfile
Steps taken to produce
Using postman I sent a
POST
request to:Within
mailcatcher
I received the confirmation email and followed theConfirm my account
link. The request goes toConfirmationsController#show
where aNoMethodError
is raised. Specifically,undefined method
rails51?' for Devise:Module`Seems the
devise
gem needs to be bumped?The text was updated successfully, but these errors were encountered: