bugzinga / redcase

Test case management plug-in for the Redmine
http://www.redmine.org/plugins/redcase
Other
23 stars 24 forks source link

Idea for an alternative or a method for Redmine 4.0.x? #6

Open dermitdemwolf opened 5 years ago

dermitdemwolf commented 5 years ago

Hi, has anybody an idea for a method to integrate Redcase into Redmine 4.0.x? Or maybe for a free alternative?

Thx!

SpencerBriereWEQ commented 4 years ago

Were you able to find anything?

dermitdemwolf commented 4 years ago

Yes, we managed it to adapt it. If the developer wants, I can upload the new version.

possebon commented 4 years ago

Yes, we managed it to adapt it. If the developer wants, I can upload the new version.

I need this for Redmine 4.0 too. Could you please share it? Create a new Pull Request or Fork the original repo and commit your code there.

roykssopp commented 4 years ago

Yes, we managed it to adapt it. If the developer wants, I can upload the new version.

Can You share the solution?

dermitdemwolf commented 4 years ago

https://github.com/dermitdemwolf/redcase-redmine-4.0.x.git

roykssopp commented 4 years ago

https://github.com/dermitdemwolf/redcase-redmine-4.0.x.git

Could You provide a version of Redmine which You use? I have a problem with 4.0.7 in "uninitialized constant RedcaseController"

dermitdemwolf commented 4 years ago

Redmine 4.03

Von: roykssopp notifications@github.com Gesendet: Donnerstag, 9. Juli 2020 13:18 An: bugzinga/redcase redcase@noreply.github.com Cc: dermitdemwolf w.thaler@nousdigital.net; Author author@noreply.github.com Betreff: Re: [bugzinga/redcase] Idea for an alternative or a method for Redmine 4.0.x? (#6)

https://github.com/dermitdemwolf/redcase-redmine-4.0.x.git

Could You provide a version of Redmine which You use? I have a problem with 4.0.7 in "uninitialized constant RedcaseController"

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/bugzinga/redcase/issues/6#issuecomment-656068056 , or unsubscribe https://github.com/notifications/unsubscribe-auth/AKABS56XV5LPRNDHLYIIBELR2WRNBANCNFSM4HOBVKNA . https://github.com/notifications/beacon/AKABS52QU37OEJW7OZZTVBDR2WRNBA5CNFSM4HOBVKNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOE4NM3WA.gif

Out now! m€ins the new app of the OenB provides your complete financial picture in one place! www.eurologisch.at

Wolfgang Thaler Systemadministration / Quality Management mobile +43 650 2015908 • e-mail w.thaler@nousdigital.com

NOUS Wissensmanagement GmbH Ullmannstrasse 35, 1150 Vienna, Austria • phone +43 1 236 58 91-0 web www.nousdigital.com • facebook http://facebook.com/NOUS-Guide

NOUSguide Inc. 1368 26th Street, Denver, CO 80205, USA

NOUS Digital DMCC J&G Plex 3S, Jumeirah Lake Towers, P.O.Box 379866, Dubai, UAE

sweihub commented 3 years ago

https://github.com/dermitdemwolf/redcase-redmine-4.0.x.git

Thanks, it works with redmine v4.1.1 with the fixes

diff --git a/app/controllers/redcase/environments_controller.rb b/app/controllers/redcase/environments_controller.rb
index 8b97c5f..11b32bc 100644
--- a/app/controllers/redcase/environments_controller.rb
+++ b/app/controllers/redcase/environments_controller.rb
@@ -16,6 +16,7 @@ class Redcase::EnvironmentsController < ApplicationController
        end

        def create
+                params.permit!
                environment = ExecutionEnvironment.new(params[:execution_environment])
                environment.project_id = @project.id
                environment.save
@@ -23,6 +24,7 @@ class Redcase::EnvironmentsController < ApplicationController
        end

        def update
+                params.permit!
                environment = ExecutionEnvironment.find(params[:id])
                environment.update_attributes params[:execution_environment]
                if params[:execution_environment][:project_id]
@@ -34,6 +36,7 @@ class Redcase::EnvironmentsController < ApplicationController
        end

        def destroy
+                params.permit!
                environment = ExecutionEnvironment.find(params[:id])
                environment.destroy
                # TODO: Properly handle the case when this fails.

Which solve the issue of ActiveModel::ForbiddenAttributesError see: https://api.rubyonrails.org/classes/ActiveModel/ForbiddenAttributesError.html

NicolasToussaint commented 3 years ago

Hi, I want to test Redcase on a fresh install of Redmine.

If @dermitdemwolf 's version works with Redmine 4+, maybe the changes could be merged here so as to advertise that the plugin is compatible with the most recent version of Redmine (today is says: Compatible with: Redmine 3.1.x, 3.0.x) ?

Thibaut69 commented 3 years ago

I've forked the project, added the fix for environments_controller.rb and give some details in the README (Français and English) based on my experience with Redmine 4.2.0

Release : https://github.com/Thibaut69/redcase-redmine-4.0.x/releases/tag/1.0

ruslaan7 commented 2 years ago

Hi, I want to install Redcase plugin on a fresh install of Redmine (5 version). Have you tried to update this plugin to that version? Thanks.

Thibaut69 commented 2 years ago

No I don't


From: ruslaan7 @.> Sent: Thursday, August 11, 2022 5:53:16 PM To: bugzinga/redcase @.> Cc: Thibaut69 @.>; Comment @.> Subject: Re: [bugzinga/redcase] Idea for an alternative or a method for Redmine 4.0.x? (#6)

Hi, I want to install Redcase plugin on a fresh install of Redmine (5 version). Have you tried to update this plugin to that version? Thanks.

— Reply to this email directly, view it on GitHubhttps://github.com/bugzinga/redcase/issues/6#issuecomment-1212176721, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AECAZJU4H7JIFMBGLLWNCQLVYUOWZANCNFSM4HOBVKNA. You are receiving this because you commented.Message ID: @.***>

mahesh-novotrax commented 1 year ago

Does anyone try installing this for Redmine 5?

Av3ngard commented 1 year ago

Hi, Has anyone installed the plugin on the latest version of Redmine?