Sha256: aebc400f6887ecadacc8caba1961fcda80da4cc49eac75bf7e1b6706a1dddcd5
Contents?: true
Size: 875 Bytes
Versions: 57
Compression:
Stored size: 875 Bytes
Contents
# This initializer lets you preview the defaults that have changed on the new # Solidus version. # # It allows you to enable them one by one while you adapt your application. # When you're done with all of them, you can safely remove this file and add # the updated `load_defaults` calls to the top of the config blocks in your # Solidus main initializer. You can also call `Spree.load_defaults(version)` to # target all components at once. Spree.config do |config| <%= @core_changes %> end <% if defined?(Spree::Frontend::Engine) -%> Spree::Frontend::Config.configure do |config| <%= @frontend_changes %> end <% end -%> <% if defined?(Spree::Backend::Engine) -%> Spree::Backend::Config.configure do |config| <%= @backend_changes %> end <% end -%> <% if defined?(Spree::Api::Engine) -%> Spree::Api::Config.configure do |config| <%= @api_changes %> end <% end -%>
Version data entries
57 entries across 57 versions & 1 rubygems