README.md in fullstack-carousel-0.1.1 vs README.md in fullstack-carousel-0.1.2
- old
+ new
@@ -1,8 +1,44 @@
# Fullstack-carousel
Carousel plugin for fullstack cms
+## Installation
+
+``` rb
+ gem fullstack-cms
+
+ gem fullstack-carousel
+```
+
+``` sh
+rails g fullstack:carousel:install
+
+```
+
+``` sh
+rake db:migrate
+
+```
+
+## Usage
+
+``` rhtml
+
+<%= carousel_page_part :slideshow do |item| %>
+
+ <img src="<%= item.photo.url %>" alt="">
+ <div class="carousel-caption">
+ <h4><%= item.label %></h4>
+ <p><%= item.description %></p>
+ </div>
+
+<% end %>
+
+```
+
+
+
---
Copyright (c) 2012 mcasimir
MIT License