Skip to content

Latest commit

 

History

History
80 lines (53 loc) · 2.22 KB

README.md

File metadata and controls

80 lines (53 loc) · 2.22 KB

Redmine Books

Redmine plugin for accounting books

Istallation

Clone plugin's source code into /plugins application directory

git clone https://github.com/twinslash/redmine_books.git

Install all required gems. For example

bundle install --no-deployment --without development test --path vendor/bundle #instead '--no-deployment --without development test --path vendor/bundle' put your specific options

Perform the migrations

bundle exec rake redmine:plugins:migrate NAME=redmine_books

Restart server.

##Permission configuration

  1. Login as administrator.

  2. Click on the "Administration" link menu on top panel. Click "Books".

  3. Choose users, groups and actions that you want to allow to them.

Admin has all rights by default.

Notice!

User has permissions of groups to which he belongs.

Features

  • The book can be returned by another user(if he has the right)

  • User can look at the history books(who took, when took, when returned, who returned)

  • Search by tags
  • Apportunity to vote and comment

Uninstall

Roll back all plugins migrations

bundle exec rake redmine:plugins:migrate NAME=redmine_books VERSION=0

Remove /redmine_books directory from /plugins directory

cd redmine_application_path/plugins
rm -rf redmine_books

Remove all plugin gems from Gemfile.lock

bundle install --no-deployment --without development test --path vendor/bundle #instead '--no-deployment --without development test --path vendor/bundle' put your specific options

Restart server.

Changelog

  • 0.0.3 - Added ability to vote and comment(08.04.2013)
  • 0.0.2 - Search by tags(07.03.2013)
  • 0.0.1 - Base functionality