Skip to content

Instantly share code, notes, and snippets.

@mumoc
Last active May 9, 2016 12:59
Show Gist options
  • Save mumoc/55dce225244fb02363e2 to your computer and use it in GitHub Desktop.
Save mumoc/55dce225244fb02363e2 to your computer and use it in GitHub Desktop.
Spree Site Wide Preferences
# ***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
@Infigic
Copy link

Infigic commented May 9, 2016

@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