├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── README.md ├── Rakefile ├── cucumber.yml ├── devise-specs.gemspec ├── features ├── .nav ├── delete_specs.feature ├── generate_specs_with_fabricators.feature ├── generate_specs_with_factories.feature ├── readme.md ├── skip_specs.feature ├── specs_pass.feature ├── step_definitions │ ├── devise-specs_steps.rb │ └── rspec_steps.rb └── support │ └── env.rb ├── fixtures ├── action_mailer.rb ├── application.html.erb ├── index.html.erb └── routes.rb └── lib ├── devise-specs.rb ├── devise └── specs │ └── railtie.rb └── generators └── devise ├── specs_generator.rb └── templates ├── devise.rb.tt ├── factory_bot.rb.tt ├── resource_resets_password_spec.rb.tt ├── resource_signs_in_spec.rb.tt ├── resource_signs_out_spec.rb.tt └── resource_signs_up_spec.rb.tt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | tmp/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/Rakefile -------------------------------------------------------------------------------- /cucumber.yml: -------------------------------------------------------------------------------- 1 | default: --publish-quiet 2 | -------------------------------------------------------------------------------- /devise-specs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/devise-specs.gemspec -------------------------------------------------------------------------------- /features/.nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/.nav -------------------------------------------------------------------------------- /features/delete_specs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/delete_specs.feature -------------------------------------------------------------------------------- /features/generate_specs_with_fabricators.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/generate_specs_with_fabricators.feature -------------------------------------------------------------------------------- /features/generate_specs_with_factories.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/generate_specs_with_factories.feature -------------------------------------------------------------------------------- /features/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/readme.md -------------------------------------------------------------------------------- /features/skip_specs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/skip_specs.feature -------------------------------------------------------------------------------- /features/specs_pass.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/specs_pass.feature -------------------------------------------------------------------------------- /features/step_definitions/devise-specs_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/step_definitions/devise-specs_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/rspec_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/step_definitions/rspec_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /fixtures/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/fixtures/action_mailer.rb -------------------------------------------------------------------------------- /fixtures/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/fixtures/application.html.erb -------------------------------------------------------------------------------- /fixtures/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/fixtures/index.html.erb -------------------------------------------------------------------------------- /fixtures/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | root 'home#index' 3 | end 4 | -------------------------------------------------------------------------------- /lib/devise-specs.rb: -------------------------------------------------------------------------------- 1 | require 'devise/specs/railtie' 2 | -------------------------------------------------------------------------------- /lib/devise/specs/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/devise/specs/railtie.rb -------------------------------------------------------------------------------- /lib/generators/devise/specs_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/specs_generator.rb -------------------------------------------------------------------------------- /lib/generators/devise/templates/devise.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/templates/devise.rb.tt -------------------------------------------------------------------------------- /lib/generators/devise/templates/factory_bot.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/templates/factory_bot.rb.tt -------------------------------------------------------------------------------- /lib/generators/devise/templates/resource_resets_password_spec.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/templates/resource_resets_password_spec.rb.tt -------------------------------------------------------------------------------- /lib/generators/devise/templates/resource_signs_in_spec.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/templates/resource_signs_in_spec.rb.tt -------------------------------------------------------------------------------- /lib/generators/devise/templates/resource_signs_out_spec.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/templates/resource_signs_out_spec.rb.tt -------------------------------------------------------------------------------- /lib/generators/devise/templates/resource_signs_up_spec.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrii/devise-specs/HEAD/lib/generators/devise/templates/resource_signs_up_spec.rb.tt --------------------------------------------------------------------------------