I'm looking for a part-time remote job.

Hire me


I'm the author of:

Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.

Check the book's project or

Buy the book

Social pages of the book:

By buying this book you also donate to Redmine (see this page).


Follow me:

Support #2284

Redmine 2.4.x-2.5.x support

Added by Johnny Tide about 10 years ago. Updated almost 10 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
-
Start date:
21 Mar 2014
Due date:
03 May 2014
% Done:

100%

Redmine version:

Description

Environment:
Redmine version 2.5.0.devel.12986
Ruby version 1.8.7-p352 (2011-06-30) [x86_64-linux]
Rails version 3.2.17
Environment production
Database adapter Mysql2
Redmine plugins:
redpress 0.0.1b

To get it installed I had to do the following:

Received error: undefined method `named_scope' in red_news_patch.rb:7:in `included'
I changed base.named_scope(:visible to base.scope(:visible.

I then tried to migrate plugins again and:
Received error: uninitialized constant ActionDispatch::Routing::Routes in routes.rb

I changed:

ActionController::Routing::Routes.draw do |map|
    map.connect('session.:format', :controller => 'red_press', :action => 'index', :conditions => { :method => :get })
    map.connect('projects/:id/menu.:format', :controller => 'red_press', :action => 'project_menu', :conditions => { :method => :get })
    map.connect('news/:id/migrate', :controller => 'red_press', :action => 'migrate_news', :conditions => { :method => :get })
end

to:

RedmineApp::Application.routes.draw do
  match 'session.:format', :controller => 'red_press', :action => 'index', :via => :get
  match 'projects/:id/menu.:format', :controller => 'red_press', :action => 'project_menu', :via => :get
  match 'news/:id/migrate', :controller => 'red_press', :action => 'migrate_news', :via => :get
end

I was then able to migrate the plugin.

My question is did any of that break the plugin? I am having issues getting Wordmine working.

I will update this with a link to my Wordmine post.

History

#1 Updated by Johnny Tide about 10 years ago

Here is a link to my Wordmine issue http://projects.andriylesyuk.com/issues/2285.

#2 Updated by Andriy Lesyuk almost 10 years ago

  • Description updated (diff)
  • Status changed from New to In Progress
  • Assignee set to Andriy Lesyuk
  • % Done changed from 0 to 80

Johnny Tide wrote:

My question is did any of that break the plugin?

Nope, these are changes need for the plugin to work under Redmine 2.4.x-2.5.x!

#3 Updated by Andriy Lesyuk almost 10 years ago

  • Subject changed from Trying to get this installed to Redmine 2.4.x-2.5.x support
  • Due date set to 03 May 2014
  • Status changed from In Progress to Closed
  • % Done changed from 80 to 100

Also available in: Atom PDF

Terms of use | Privacy policy