Sha256: e7756c44f24bbfad6a685c26a2905ee0bd08b7da59366cb5abd510eb1ac8ba12

Contents?: true

Size: 1.88 KB

Versions: 5

Compression:

Stored size: 1.88 KB

Contents

Piggybak Gem (Engine)
========

Modular / mountable ecommerce gem. Features:

* Configurable tax methods, shipping methods, payment methods

* One page checkout, with AJAX for shipping and tax calculations

* Order processing completed in transaction, minimizing orphan data created 

* Fully defined backend RailsAdmin interface for adding orders on the backend

Installation
========

* First, add to Gemfile (from RubyGems, with version specified, or source) with *one* of the following options:
    
        gem "piggybak"
        gem "piggybak", '0.4.19'
        gem "piggybak", :git => "git://github.com/stephskardal/piggybak.git"
 
* Next, run rake task to copy migrations:

        rake piggybak_engine:install:migrations

* Next, run rake task to run migrations:

        rake db:migrate

* Next, mount in your application by adding:

        mount Piggybak::Engine => '/checkout', :as => 'piggybak'" to config/routes

* You must include jquery_ujs in your application.js file in to get the remove item from cart functionality to work.

        //= require jquery_ujs

* You must add the following to your application layout:

        <% if "#{params[:controller]}##{params[:action]}" == "piggybak/orders#submit" -%>
        <%= javascript_include_tag "piggybak-application" %>
        <% end -%>

* And you must add this to your production configuration, in order for this asset to be precompiled (and in some cases, ensure that it is served via SSL):

        config.assets.precompile += %w( piggybak-application.js )

More Details
========

Visit the project website [here][project-website] to see more documentation and view a demo.

[project-website]: http://www.piggybak.org/

TODO
========

On order notes functionality, changes in addresses are not recorded. This functionality is broken and needs attention.

Copyright
========

Copyright (c) 2011 End Point & Steph Skardal. See LICENSE.txt for further details.

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
piggybak-0.5.4 README.md
piggybak-0.5.3 README.md
piggybak-0.5.2 README.md
piggybak-0.5.1 README.md
piggybak-0.5.0 README.md