OSDN Git Service

remove install from git.
[quickedit/quick_edit.git] / init.rb
1 #coding: utf-8
2
3 require_dependency File.expand_path('../app/helpers/application_helper.rb', __FILE__)
4 require_dependency File.expand_path('../hooks', __FILE__)
5
6
7 # plugin name depends to plugin directory
8 plugin_name = File.dirname(File.expand_path(__FILE__))
9 plugin_name = File.basename(plugin_name)
10
11 Redmine::Plugin.register plugin_name do
12   name 'Quick Edit plugin'
13   author 'Akira Saito'
14   description 'This plugin provides ability to edit a fields of the issue at the issues page.'
15   version '0.0.6'
16
17   permission :manage_quick_edit_relations, {:quick_edit_relations => [:create, :destroy]}, :public => true
18 end