Docushin creates documentation based on your rails application routes.
Add this line to your application's Gemfile:
gem 'docushin'
And then execute:
$ bundle install
Mount engine in your application config/routes.rb
mount Docushin::Engine, :at => "docushin"
You can specify, the name of the route you want Docushin to be mountet at, just change "docushin"
to your desired destination. It creates a resource on http://yousitename/docushin/routes.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Added some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request