Skip to content

Commit

Permalink
Made changes to README and install generator warning message about ra…
Browse files Browse the repository at this point in the history
…ke assets:clean
  • Loading branch information
daemonsy committed May 12, 2012
1 parent aac5560 commit 418eb1f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
26 changes: 19 additions & 7 deletions README.md
Expand Up @@ -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
-------
Expand Down
1 change: 1 addition & 0 deletions lib/generators/spree_showcase/install/install_generator.rb
Expand Up @@ -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
Expand Down
Binary file removed spree_showcase-0.5.0.gem
Binary file not shown.
2 changes: 1 addition & 1 deletion spree_showcase.gemspec
Expand Up @@ -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'
Expand Down

0 comments on commit 418eb1f

Please sign in to comment.