Sha256: 7b5aeb7b951760904ea9c84b99fa09b65d000b2fb297dc89bb1b31f8f2114bf2

Contents?: true

Size: 811 Bytes

Versions: 1

Compression:

Stored size: 811 Bytes

Contents

# MixRails

MixRails is a CMS based on Ruby on Rails and uses Mongoid as ORM(MongoDB).

## Installation

Add this line to your application's Gemfile:

    gem 'mix-rails'

And then execute:

    $ bundle

## Usage

Create a new rails project.

    $ rails new myproject -T --skip-active-record --skip-bundle --dummy-path=spec/dummy

In your config/application.rb add these after require 'rails/all'.

```ruby
require 'mix-rails/all'
```

Configure a mongoid instance with:

    $ rails generate mongoid:config

And then run the application

    $ bundle exec rails server

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mix-rails-0.10.3 README.md