mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
Additional fixes required by latest merge from master (nr. 2)
This commit is contained in:
parent
6c2c5aff17
commit
e740e586e8
3 changed files with 15 additions and 5 deletions
4
Gemfile
4
Gemfile
|
@ -71,7 +71,9 @@ gem 'aws-sdk', '~> 2'
|
|||
gem 'aws-sdk-v1'
|
||||
|
||||
gem 'delayed_job_active_record'
|
||||
gem 'devise-async'
|
||||
gem 'devise-async',
|
||||
git: 'https://github.com/mhfs/devise-async.git',
|
||||
branch: 'devise-4.x'
|
||||
gem 'ruby-graphviz', '~> 1.2' # Graphviz for rails
|
||||
gem 'tinymce-rails', '~> 4.6.4' # Rich text editor
|
||||
|
||||
|
|
13
Gemfile.lock
13
Gemfile.lock
|
@ -21,6 +21,14 @@ GIT
|
|||
activejob (>= 4.2)
|
||||
paperclip (>= 3.3)
|
||||
|
||||
GIT
|
||||
remote: https://github.com/mhfs/devise-async.git
|
||||
revision: 177f6363a002f7ff28f1d289c8cab7ad8d9cb8c5
|
||||
branch: devise-4.x
|
||||
specs:
|
||||
devise-async (0.10.2)
|
||||
devise (>= 4.0)
|
||||
|
||||
GIT
|
||||
remote: https://github.com/phatworx/devise_security_extension.git
|
||||
revision: b2ee978af7d49f0fb0e7271c6ac074dfb4d39353
|
||||
|
@ -185,9 +193,6 @@ GEM
|
|||
railties (>= 4.1.0, < 5.2)
|
||||
responders
|
||||
warden (~> 1.2.3)
|
||||
devise-async (1.0.0)
|
||||
activejob (>= 5.0)
|
||||
devise (>= 4.0)
|
||||
devise_invitable (1.7.2)
|
||||
actionmailer (>= 4.1.0)
|
||||
devise (>= 4.0.0)
|
||||
|
@ -498,7 +503,7 @@ DEPENDENCIES
|
|||
delayed_job_active_record
|
||||
delayed_paperclip!
|
||||
devise (~> 4.3.0)
|
||||
devise-async
|
||||
devise-async!
|
||||
devise_invitable
|
||||
devise_security_extension!
|
||||
factory_girl_rails
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
Devise::Async.enabled = true
|
||||
Devise::Async.backend = :delayed_job
|
||||
Devise::Async.queue = :devise_email
|
||||
# Devise::Async.priority = 10
|
Loading…
Reference in a new issue