Skip to content

Commit

Permalink
[#3428] Setup gem compatibile init
Browse files Browse the repository at this point in the history
  • Loading branch information
edavis10 committed Dec 18, 2009
1 parent 5f722e7 commit eb2052c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
9 changes: 1 addition & 8 deletions init.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
require 'redmine'

Redmine::Plugin.register :redmine_event_notification_override do
name 'Redmine Event Notification Override plugin'
author 'Author name'
description 'This is a plugin for Redmine'
version '0.0.1'
end
require File.dirname(__FILE__) + "/rails/init"
12 changes: 12 additions & 0 deletions rails/init.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
require 'redmine'

Redmine::Plugin.register :redmine_event_notification_override do
name 'Redmine Event Notification Override plugin'
author 'Eric Davis'
url 'https://projects.littlestreamsoftware.com'
author_url 'http://www.littlestreamsoftware.com'
description "A Redmine plugin to override the \"I don't want to be notified of changes that I make myself\" email option systemwide."
version '0.2.0'

requires_redmine :version_or_higher => '0.8.7'
end

0 comments on commit eb2052c

Please sign in to comment.