Adds a way to manage banners to Spree Commerce [compatible with Amazon S3]
- Add the following to your Gemfile
gem 'spree_banner', '~> 2.0.0'
-
Run
bundle install
-
To copy and apply migrations run:
rails g spree_banner:install
Preferences can be updated within the admin panel under "Configuration" then "Banner box settings". Or you may set them with an initializer within your application:
SpreeBanner::Config.tap do |config|
config.banner_styles = {"mini" => "48x48>", "small" => "100x100>", "large" => "800x200#"}.to_json.to_s
config.banner_default_style = 'small'
end
- Add banner helper method in your view:
<%= insert_banner_box(category: "my_category") %>
- Additional options:
:class => "my_class"
:style => "my_style"
:list = true|false
Copyright (c) 2012 [Damiano Giacomello], released under the New BSD License