No commit activity in last 3 years
No release in over 3 years
Wiki engine based on Rails 3 engine
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

CargoWiki

cargo_wiki allows you to install a wiki in a Rails 3 application.

Installation

Add cargo_wiki to your Gemfile:

gem 'cargo_wiki'

cargo_wiki uses compass, and you must add compass support in the assets group of your Gemfile:

group :assets do
  gem 'compass-rails'
end

Then run:

bundle install

You also need to update your database:

rails generate cargo_wiki:install
rake db:migrate

Finally mount the engine in routes.rb:

mount CargoWiki::Engine => "/wiki"

You are free to mount the wiki to whatever url you want.