Sha256: 393a38dd615641e5d440cb35002641623d351bf5552e4a41d5bb5e5ad3d11c5b
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# Configure Spree Preferences # # Note: Initializing preferences available within the Admin will overwrite any changes that were made through the user interface when you restart. # If you would like users to be able to update a setting with the Admin it should NOT be set here. # # Note: If a preference is set here it will be stored within the cache & database upon initialization. # Just removing an entry from this initializer will not make the preference value go away. # Instead you must either set a new value or remove entry, clear cache, and remove database entry. # # In order to initialize a setting do: # config.setting_name = 'new value' Spree.config do |config| # Example: # Uncomment to stop tracking inventory levels in the application # config.track_inventory_levels = false end # Configure Spree Dependencies # # Note: If a dependency is set here it will NOT be stored within the cache & database upon initialization. # Just removing an entry from this initializer will make the dependency value go away. # Spree.dependencies do |dependencies| # Example: # Uncomment to change the default Service handling adding Items to Cart # dependencies.cart_add_item_service = 'MyNewAwesomeService' end Spree.user_class = "Spree::LegacyUser"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_billing_sisow-0.9.2 | spec/dummy/config/initializers/spree.rb |
spree_billing_sisow-0.9.1 | spec/dummy/config/initializers/spree.rb |