├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app └── views │ └── devise │ ├── confirmations │ └── new.html.erb │ ├── mailer │ ├── confirmation_instructions.html.erb │ ├── password_change.html.erb │ ├── reset_password_instructions.html.erb │ └── unlock_instructions.html.erb │ ├── passwords │ ├── edit.html.erb │ └── new.html.erb │ ├── registrations │ ├── edit.html.erb │ └── new.html.erb │ ├── sessions │ └── new.html.erb │ ├── shared │ └── _links.html.erb │ └── unlocks │ └── new.html.erb ├── bin ├── console └── setup ├── devise-bootstrapped.gemspec ├── lib └── devise │ ├── bootstrapped.rb │ ├── bootstrapped │ └── version.rb │ └── generators │ └── bootstrapped_generator.rb └── spec ├── devise └── bootstrapped_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/Rakefile -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/bin/setup -------------------------------------------------------------------------------- /devise-bootstrapped.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/devise-bootstrapped.gemspec -------------------------------------------------------------------------------- /lib/devise/bootstrapped.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/lib/devise/bootstrapped.rb -------------------------------------------------------------------------------- /lib/devise/bootstrapped/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/lib/devise/bootstrapped/version.rb -------------------------------------------------------------------------------- /lib/devise/generators/bootstrapped_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/lib/devise/generators/bootstrapped_generator.rb -------------------------------------------------------------------------------- /spec/devise/bootstrapped_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/devise-bootstrapped/HEAD/spec/devise/bootstrapped_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) 2 | require 'devise/bootstrapped' 3 | --------------------------------------------------------------------------------