Sha256: b408aff913319d92b4df849a1fb2078f40aca32376ca90f6a8bdf6268b4847a9
Contents?: true
Size: 519 Bytes
Versions: 3
Compression:
Stored size: 519 Bytes
Contents
# frozen_string_literal: true require_relative '../../solidus/auth/install/install_generator' module SolidusAuthDevise module Generators class InstallGenerator < Rails::Generators::Base # Copy over any class option from the legacy install generator Solidus::Auth::Generators::InstallGenerator.class_options.each do |name, option| class_options[name] ||= option.dup end def forward_to_spree_auth_install generate 'solidus:auth:install', *ARGV end end end end
Version data entries
3 entries across 3 versions & 1 rubygems