diff --git a/README.md b/README.md index 5746f5b..21d11de 100644 --- a/README.md +++ b/README.md @@ -5,24 +5,36 @@ Spree Showcase is a simple extension that allows you to create the good ol' slid The secondary objective is to create a slideshow template that allows most types of JS slider to be implemented easily into Spree. -Currently, this is the first iteration of the slideshow extension at v0.1. Contributors are greatly welcomed =) +#### Screenshot of Frontend: +![Screenshot of Frontend](https://github.com/downloads/daemonsy/spree_showcase/in%20action.png) + +#### Admin Backend: +![Screenshot of Backend](https://github.com/downloads/daemonsy/spree_showcase/Screen%20Shot%202012-05-09%20at%202.07.00%20AM.png) + +Currently, this is the first iteration of the slideshow extension at v0.5.2. Contributors are greatly welcomed =) **Next to come:** - Adding sliders to different layout positions - Enabling more options to be customized in the Admin Menu -Example +Installation ======= Get a clean Spree Installation -rails new spree_demo +```rails new spree_demo cd spree_demo -spree install +spree install``` + +```gem 'spree_showcase', :git=>"git://github.com/daemonsy/spree_showcase" # Into Gemfile``` + +OR + +```gem 'spree_showcase' # Ruby Gems``` -gem 'spree_showcase', :git=>"git://github.com/daemonsy/spree_showcase" # Into Gemfile +```bundle install +rails g spree_showcase:install``` -bundle install -rails g spree_showcase:install +**Remember** to run ```rake assets:clean```, otherwise the javascript library might not be loaded. Testing ------- diff --git a/lib/generators/spree_showcase/install/install_generator.rb b/lib/generators/spree_showcase/install/install_generator.rb index e2110d6..fd7b5bb 100644 --- a/lib/generators/spree_showcase/install/install_generator.rb +++ b/lib/generators/spree_showcase/install/install_generator.rb @@ -59,6 +59,7 @@ def run_migrations def complete puts "\nEverything is done! To summarize, _showcase.html.erb => HTML template, showcase.css.scss & showcase.js => assets. Edit these 3 files to fit run the slideshow." + puts "\nPlease run rake assets:clean (IMPORTANT) to clear any precompiled assets from fresh install of Spree." end end end diff --git a/spree_showcase-0.5.0.gem b/spree_showcase-0.5.0.gem deleted file mode 100644 index 568c6af..0000000 Binary files a/spree_showcase-0.5.0.gem and /dev/null differ diff --git a/spree_showcase.gemspec b/spree_showcase.gemspec index 7a90d9f..a2b7318 100644 --- a/spree_showcase.gemspec +++ b/spree_showcase.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = 'spree_showcase' - s.version = '0.5.1' + s.version = '0.5.2' s.summary = 'A Simple Spree Slider' s.description = 'A simple slider accommodator, using Flexslider as default' s.required_ruby_version = '>= 1.8.7'