From d410a69f1be3935c5d1a69c54e6281463c224b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=9A=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BB=D0=B5=D0=BD=D0=BE=D0=BA?= <dmitry.kovalenok@twinslash.com> Date: Tue, 23 Oct 2012 13:55:28 +0300 Subject: [PATCH] creating redmine_omniauth_google plugin skeleton --- README.rdoc | 3 +++ config/locales/en.yml | 3 +++ config/routes.rb | 2 ++ init.rb | 8 ++++++++ test/test_helper.rb | 2 ++ 5 files changed, 18 insertions(+) create mode 100644 README.rdoc create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 init.rb create mode 100644 test/test_helper.rb diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 0000000..c7fd4fa --- /dev/null +++ b/README.rdoc @@ -0,0 +1,3 @@ += redmine_omniauth_google + +Description goes here diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..c55090a --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,3 @@ +# English strings go here for Rails i18n +en: + my_label: "My label" diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..1803173 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,2 @@ +# Plugin's routes +# See: http://guides.rubyonrails.org/routing.html diff --git a/init.rb b/init.rb new file mode 100644 index 0000000..23c537b --- /dev/null +++ b/init.rb @@ -0,0 +1,8 @@ +Redmine::Plugin.register :redmine_omniauth_google do + name 'Redmine Omniauth Google plugin' + author 'Author name' + description 'This is a plugin for Redmine' + version '0.0.1' + url 'http://example.com/path/to/plugin' + author_url 'http://example.com/about' +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..54685d3 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,2 @@ +# Load the Redmine helper +require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper') -- GitLab