Sha256: 910366b51153ecc445167980ad6059afdd0bd826365c44924cf8c636b1f6d7aa

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

http://coryschires-blog-post-images.s3.amazonaws.com/rostra.png

Rostra allows you to quickly add a question and answer forum to your application. Requires Rails 3.1 and Ruby 1.9.2.

<b>NOTE: Rostra is not production ready.</b>

== Installation
Include the gem to your <tt>Gemfile</tt>:

  gem 'rostra'

Mount the engine in <tt>config/routes.rb</tt>:

  mount Rostra::Engine => "/rostra"   # or whatever path you like

Install and run the necessary migrations:

  rake rostra:install:migrations
  rake db:migrate

Run the generator to create the configuration file:

  rails generate rostra:install   # see `config/initializers/rostra.rb` for details

Call <tt>rostra</tt> in your user model:

  class User < ActiveRecord::Base
    rostra
  end


== Contributing to Rostra
Fork the project, make your changes, and submit a pull request. Please ensure the tests pass:

  rspec spec         # runs the specs
  cucumber features  # runs the cukes

<b>Contributors:</b> {robertwalsh0}[https://github.com/robertwalsh0], {bcody}[https://github.com/bcody]

== License
This project uses MIT-LICENSE.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rostra-0.0.7 README.rdoc
rostra-0.0.6 README.rdoc
rostra-0.0.5 README.rdoc
rostra-0.0.4 README.rdoc