Moved the redmine plugin to a seperate repositiory: http://github.com/fnp/redakcja_re...
[redakcja.git] / redmine / redmine_publications / init.rb
diff --git a/redmine/redmine_publications/init.rb b/redmine/redmine_publications/init.rb
deleted file mode 100644 (file)
index 1df1e93..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'redmine'
-
-# Patches to the Redmine core.
-require 'dispatcher'
-Dispatcher.to_prepare :redmine_kanban do
-  require_dependency 'issue'
-  # Guards against including the module multiple time (like in tests)
-  # and registering multiple callbacks
-  unless Issue.included_modules.include? RedminePublications::IssuePatch
-    Issue.send(:include, RedminePublications::IssuePatch)
-  end
-end
-
-require_dependency 'issue_publication_hook'
-
-Redmine::Plugin.register :redmine_publicatons do
-  name 'Publications managment plugin'
-  author 'Ɓukasz Rekucki'
-  description 'This plugn helps manage issues related to a publication.'
-  version '0.0.3'
-
-
-  requires_redmine :version_or_higher => '0.8.0'        
-
-end
-