Last active
May 9, 2016 12:59
-
-
Save mumoc/55dce225244fb02363e2 to your computer and use it in GitHub Desktop.
Spree Site Wide Preferences
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ***config/application.rb*** | |
| module SpreeDemo | |
| class Application < Rails::Application | |
| # more awesome code here... | |
| config.to_prepare do |config| | |
| # more code here... | |
| config.autoload_paths += %W(#{config.root}/lib/spree/) | |
| #... | |
| end | |
| end | |
| end | |
| # ***lib/spree/bucket_configuration.rb*** | |
| module Spree | |
| class BucketConfiguration < Spree::Preferences::Configuration | |
| preference :bucket_name, :string, default: "waka" | |
| preference :bucket_url, :string, default: "" | |
| end | |
| end | |
| # ***config/initializers/bucket_configuration.rb*** | |
| module Spree | |
| SpreeDemo::Config = Spree::BucketConfiguration.new | |
| end | |
| SpreeDemo::Config[:bucket_name] = "blue_theme" | |
| SpreeDemo::Config[:bucket_url] = "waka" + SpreeDemo::Config.bucket_name |
@vishelshell spring might be issue. stop spring and than start up.
bin/spring status
bin/spring stop
bin/rails c
and than check
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@dfreerksen sorry for bothering, but i was trying to write decorator for app configuration
app_configuration_decorator.rbto add somepreferenceand everything works ok, i guess. But if i am trying to set the newpreferenceinconfig/initializers/spree.rbwithSpree::Config[:new_preference] = "new preference value"i am gettinghas_preference!': new_preference preference not defined (NoMethodError)Have you successfuly set the newly created
prefenceyourself? And if you have, maybe you have any thoughts what am i missing?Thanks!