├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── devise-async.gemspec ├── lib ├── devise-async.rb └── devise │ ├── async.rb │ └── async │ ├── model.rb │ └── version.rb └── spec ├── devise ├── async │ └── model_spec.rb └── async_spec.rb ├── rails_helper.rb ├── spec_helper.rb └── support ├── rails_app.rb ├── rails_app ├── app │ └── models │ │ └── admin.rb ├── config │ ├── database.yml │ ├── initializers │ │ └── devise.rb │ └── routes.rb └── db │ └── schema.rb └── test_helpers.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require rails_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | 3 | require "bundler/gem_tasks" 4 | -------------------------------------------------------------------------------- /devise-async.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/devise-async.gemspec -------------------------------------------------------------------------------- /lib/devise-async.rb: -------------------------------------------------------------------------------- 1 | require "devise/async" 2 | -------------------------------------------------------------------------------- /lib/devise/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/lib/devise/async.rb -------------------------------------------------------------------------------- /lib/devise/async/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/lib/devise/async/model.rb -------------------------------------------------------------------------------- /lib/devise/async/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/lib/devise/async/version.rb -------------------------------------------------------------------------------- /spec/devise/async/model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/devise/async/model_spec.rb -------------------------------------------------------------------------------- /spec/devise/async_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/devise/async_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/rails_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/support/rails_app.rb -------------------------------------------------------------------------------- /spec/support/rails_app/app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/support/rails_app/app/models/admin.rb -------------------------------------------------------------------------------- /spec/support/rails_app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/support/rails_app/config/database.yml -------------------------------------------------------------------------------- /spec/support/rails_app/config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/support/rails_app/config/initializers/devise.rb -------------------------------------------------------------------------------- /spec/support/rails_app/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | devise_for :admins 3 | end 4 | -------------------------------------------------------------------------------- /spec/support/rails_app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/support/rails_app/db/schema.rb -------------------------------------------------------------------------------- /spec/support/test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhfs/devise-async/HEAD/spec/support/test_helpers.rb --------------------------------------------------------------------------------