Coder Social home page Coder Social logo

shopper-engine's Introduction

Shopper Engine

Simple mountable shop engine, with cart and checkout features.

Build Status Code Climate Test Coverage

Installation

Database setup

  1. Generate migrations by rake shopper_engine:install:migrations
  2. Run migrations by rake db:migrate

Routes setup

You should put this line in your routes config mount ShopperEngine::Engine => "/shop"

Customer model

  1. Ensure that your model is valid Devise user model.
  2. Call acts_as_customer method inside it.
class Customer < ActiveRecord::Base
  ...
  acts_as_customer
end

Products models

  1. Ensure that you model have title, and price attributes.
  2. Call acts_as_product method inside it.
class Book < ActiveRecord::Base
  ...
  acts_as_product
end

Helpers

  1. shopper_engine.cart_path - cart page url.
  2. shopper_engine.add_to_cart(product) - add to cart button.
  3. shopper_engine.orders_path - customer order list page url.

Customization

You can customize views and controllers by creating a copy of them in your application.

Command for creating controllers copy:

rails generate shopper_engine:controllers

Command for creating views copy:

rails generate shopper_engine:views

shopper-engine's People

Contributors

rom4ik avatar

Forkers

venki911

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.