diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d2724e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*~ +.* diff --git a/README.rdoc~ b/README.rdoc~ deleted file mode 100644 index edd5d23..0000000 --- a/README.rdoc~ +++ /dev/null @@ -1,3 +0,0 @@ -= Solved issues (redmine plugin) - -Redmine 2.3 ready diff --git a/config/locales/en.yml~ b/config/locales/en.yml~ deleted file mode 100644 index 933ec2b..0000000 --- a/config/locales/en.yml~ +++ /dev/null @@ -1,4 +0,0 @@ -# English strings go here for Rails i18n -en: - issuesreportedbymewithstatus: "Solved issues" - label_solved_issue_plural: "Solved issues" diff --git a/config/locales/ru.yml~ b/config/locales/ru.yml~ deleted file mode 100644 index 3924b12..0000000 --- a/config/locales/ru.yml~ +++ /dev/null @@ -1,4 +0,0 @@ -# Russian strings go here for Rails i18n -ru: - issuesreportedbymewithstatus: "Решенные задачи" - label_solved_issue_plural: "Решенные задачи" diff --git a/init.rb~ b/init.rb~ deleted file mode 100644 index a072e60..0000000 --- a/init.rb~ +++ /dev/null @@ -1,14 +0,0 @@ -Redmine::Plugin.register :redmine_solved_issues do - name 'Redmine Solved Issues plugin' - author 'Roman Shipiev' - description 'Block for my/page and rake-task for mail delivery' - version '0.0.1' - url 'https://github.com/rubynovich/redmine_solved_issues' - author_url 'http://roman.shipiev.me' - - settings :default => { - :issue_status => IssueStatus.last(:conditions => {:is_closed => false}).try(:id) - }, - :partial => 'settings/settings' - -end