Bare redmine plugin

pull/6827/head
Felix Schäfer 14 years ago
commit e55404eaf9
  1. 3
      README.rdoc
  2. 3
      config/locales/en.yml
  3. 8
      init.rb
  4. 2
      lang/en.yml
  5. 5
      test/test_helper.rb

@ -0,0 +1,3 @@
= meeting
Description goes here

@ -0,0 +1,3 @@
# English strings go here for Rails i18n
en:
my_label: "My label"

@ -0,0 +1,8 @@
require 'redmine'
Redmine::Plugin.register :redmine_meeting do
name 'Redmine Meeting plugin'
author 'Author name'
description 'This is a plugin for Redmine'
version '0.0.1'
end

@ -0,0 +1,2 @@
# English strings go here
my_label: "My label"

@ -0,0 +1,5 @@
# Load the normal Rails helper
require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper')
# Ensure that we are using the temporary fixture path
Engines::Testing.set_fixture_path
Loading…
Cancel
Save