Comable
Comable provides a simple way to add e-commerce features to your Ruby on Rails application.
Installation
- Add comable in the
Gemfile:
ruby
gem 'comable'
- Download and install by running:
bash
bundle install
- Run the generator:
bash
bundle exec rails generate comable:install
- Start up your application:
bash
bundle exec rails server
Go to your browser and open http://localhost:3000.
Access the admin panel
You will need to import the seed data if admin user does not exist.
bash
bundle exec rake db:seed
Go to your browser and open http://localhost:3000/admin.
Requirements
- Ruby on Rails 3.2, 4.1, 4.2
- Ruby 2.1, 2.2
And strong_parameters, everywhere gems are required only for Rails 3.
Development
To set up a development environment, simply do:
bash
bundle install
bundle exec rake db:create
bundle exec rake db:migrate
bundle exec rake # run the test suite