Admin configurable chunks of content that can be rendered in any view via the SnippetsHelper#render_snippet method.
note: the 0.11 compatible version is on the 0.11-stable branch.
<%# in a view %>
...
<%= render_snippet('slug-name') %>
...
<%= render_snippet(@snippet_object) %>
...
<% snippet_id = 26 %>
<%= render_snippet(snippet_id) %> 
Add to Gemfile: gem 'spree_snippets', ">= 0.5.1"
Run: bundle install rails g spree_snippets:install rake db:migrate
- Login to the Administration Console
 - Click on the Configuration Tab
 - Click on the Snippets link
 
- bundle exec rake test_app
 - bundle exec rake
 
Or
- bundle exec rspec spec/models/spree/snippet_spec.rb for test individual file
 
To enable exceptions on missing snippets, set Spree::Config.set(:spree_snippets_raise_on_missing => true)