No commit activity in last 3 years
No release in over 3 years
A simple Rails 3 engine gem that adds the issues engine (Redmine) to any Rails 3 application.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 3.2.14
>= 0
~> 3.2.14
 Project Readme

RailsRedmineIssues¶ ↑

RailsRedmineIssues is an additional gem for connection between a application and the Redmine app (e.g. communication with customers)

Installation¶ ↑

Add this to your Gemfile and run the bundle command.

gem "rails_redmine_issues", github: "constella/rails_redmine_issues"

Add the module RailsRedmineIssues in ‘config/initializers/issues_list.rb’ with following content:

module RailsRedmineIssues
  REDMINE_TOKEN = "API of user"
  DOMAIN = "http://redmineapp.ru"
  PROJECT = "project_id"
end
  1. API of user - that user will create issues from app by api, tittle of issue will have number id of current_user, provided by gem “devise”

  2. Set domain of your Redmine app

  3. Issues will be created in that project id

Getting Started¶ ↑

To get index page simply call issues_path in view

License¶ ↑

See LICENSE file for details