Skip to content
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

Extension generator: Do not always require solidus_auth_devise #224

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions lib/solidus_dev_support/templates/extension/Gemfile.tt
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ end
# See https://github.com/bundler/bundler/issues/6677
gem 'rails', '>0.a'

<% if file_name != 'solidus_auth_devise' %>
# Provides basic authentication functionality for testing parts of your engine
gem 'solidus_auth_devise'
<% end %>
case ENV.fetch('DB', nil)
when 'mysql'
gem 'mysql2'
Expand Down
2 changes: 1 addition & 1 deletion lib/solidus_dev_support/templates/extension/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require "bundler/gem_tasks"
require 'solidus_dev_support/rake_tasks'
SolidusDevSupport::RakeTasks.install(user_class: "Spree::User")
SolidusDevSupport::RakeTasks.install

task default: 'extension:specs'