-
Notifications
You must be signed in to change notification settings - Fork 117
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
Import devise token auth using https #90
Conversation
b88f3d4
to
5a20caa
Compare
@@ -65,4 +65,4 @@ group :assets do | |||
end | |||
|
|||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | |||
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] | |||
gem 'tzinfo-data', platforms: %i(mingw mswin x64_mingw jruby) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small fix to address rubocop's concern. Code climate uses a different version of Rubocop, even when we have a newer version, this problem is not detected.
Gemfile
Outdated
@@ -9,7 +9,7 @@ gem 'carrierwave', '~> 0.11.2' | |||
gem 'carrierwave-base64', '~> 2.3.4' | |||
gem 'delayed_job_active_record', '~> 4.1.2' | |||
gem 'devise', '~> 4.3.0' | |||
gem 'devise_token_auth', github: 'rootstrap/devise_token_auth' | |||
gem 'devise_token_auth', git: 'https://github.com/rootstrap/devise_token_auth', branch: :master |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
master is the default one, I think you can remove this
5a20caa
to
f80101f
Compare
f80101f
to
b9b752e
Compare
…ing_https Import devise token auth using https
Description:
codeclimate.yml
file. An issue Add/Define a new code_climate.yml file. #91 is opened to discuss and create a newcodeclimate.yml
file with the proper configuration.