openproject-plugins 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/README.md +1 -1
- data/lib/generators/open_project/plugin/plugin_generator.rb +5 -2
- data/lib/generators/open_project/plugin/templates/%full_name%.gemspec.tt +2 -2
- data/lib/generators/open_project/plugin/templates/lib/open_project/%plugin_name%/engine.rb.tt +1 -2
- data/lib/open_project/plugins.rb +5 -2
- data/lib/open_project/plugins/acts_as_op_engine.rb +5 -2
- data/lib/open_project/plugins/engine.rb +5 -2
- data/lib/open_project/plugins/load_dependency.rb +5 -2
- data/lib/open_project/plugins/patch_registry.rb +5 -2
- data/lib/open_project/plugins/version.rb +6 -3
- data/lib/openproject-plugins.rb +5 -2
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MjQ4MGEwOTljMmIxYWEwZjdlOTM1MTk5MzNiMmM4N2M0NzM3ZDMyMA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NDdkMDdlNjFiZTY1Njg1YjFmMzZlNTUyMGQ2Mjk4ZGJiZjJiNzc2Yw==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MTNjZTcwODdhYjhiODVjOTU3NTcyZTAxYzc5OTk0OTk1YzUyNmMwY2Y3Y2U3
|
10
|
+
YWEwMjJmMjA1ODEyOWQ4YjhmNTJiZDY1ZGIwMzhmYzQ2NTE2MjYwNjk2YjAx
|
11
|
+
YzUzN2UwYTgyYmM2M2YyNzM1NDU5OTk0Y2U0MTQ4YjY0ZDg1YjI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
OTQ5NTdlNDlhNWFhYzVmYjIyYTQ2MzVhZWM3YjFiODJjMmUxNmEyOTQ0NTAy
|
14
|
+
YzBkZTljMzIwODAyYmNkZjIyNzUwN2M4OTgxNWE1YzE2MmEwNDk1ODViMWY4
|
15
|
+
ZGYwYjNlNTQ3N2Q4OGNjODFhM2ViMGNhZDNlZGRlZjI3Yzk1NjI=
|
data/README.md
CHANGED
@@ -66,6 +66,6 @@ In case you find a bug or need a feature, please report at https://www.openproje
|
|
66
66
|
|
67
67
|
## License
|
68
68
|
|
69
|
-
(
|
69
|
+
Copyright (C) 2013 the OpenProject Foundation (OPF)
|
70
70
|
|
71
71
|
This plugin is licensed under the GNU GPL v3. See doc/COPYRIGHT.md for details.
|
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.version = OpenProject::<%= plugin_name.camelcase %>::VERSION
|
9
9
|
s.authors = "Finn GmbH"
|
10
10
|
s.email = "info@finn.de"
|
11
|
-
s.homepage = "
|
12
|
-
s.summary =
|
11
|
+
s.homepage = "https://www.openproject.org/projects/<%= plugin_name.gsub('_','-') %>" # TODO check this URL
|
12
|
+
s.summary = 'OpenProject <%= plugin_name.gsub('_', ' ').titleize %>'
|
13
13
|
s.description = FIXME
|
14
14
|
s.license = FIXME # e.g. "MIT" or "GPLv3"
|
15
15
|
|
data/lib/generators/open_project/plugin/templates/lib/open_project/%plugin_name%/engine.rb.tt
CHANGED
@@ -4,8 +4,7 @@ module OpenProject::<%= plugin_name.camelcase %>
|
|
4
4
|
|
5
5
|
include OpenProject::Plugins::ActsAsOpEngine
|
6
6
|
|
7
|
-
register '
|
8
|
-
'<%= full_name %>',
|
7
|
+
register '<%= full_name %>',
|
9
8
|
:author_url => 'http://finn.de',
|
10
9
|
:requires_openproject => '>= 3.0.0pre13'
|
11
10
|
|
data/lib/open_project/plugins.rb
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
@@ -1,16 +1,19 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
12
15
|
module OpenProject
|
13
16
|
module Plugins
|
14
|
-
VERSION = "1.0.
|
17
|
+
VERSION = "1.0.3"
|
15
18
|
end
|
16
19
|
end
|
data/lib/openproject-plugins.rb
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2012-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
8
|
+
# You should have received a copy of the GNU General Public License
|
9
|
+
# along with this program; if not, write to the Free Software
|
10
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
11
|
+
#
|
9
12
|
# See doc/COPYRIGHT.md for more details.
|
10
13
|
#++
|
11
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openproject-plugins
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Finn GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-09-
|
11
|
+
date: 2013-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -28,48 +28,48 @@ dependencies:
|
|
28
28
|
name: rspec-rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - '>='
|
31
|
+
- - ! '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - '>='
|
38
|
+
- - ! '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: cucumber-rails
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - '>='
|
45
|
+
- - ! '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - '>='
|
52
|
+
- - ! '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: database_cleaner
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - '>='
|
59
|
+
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - '>='
|
66
|
+
- - ! '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description:
|
70
|
-
|
71
|
-
|
72
|
-
|
69
|
+
description: ! " This plugin aims to make writing plugins easier. It provides a
|
70
|
+
generator for creating a\n basic plugin structure and a module that simplifies
|
71
|
+
setting up the plugin Rails engine.\n Thus, it is also a dependency for many
|
72
|
+
openproject plugins.\n"
|
73
73
|
email: info@finn.de
|
74
74
|
executables: []
|
75
75
|
extensions: []
|
@@ -102,12 +102,12 @@ require_paths:
|
|
102
102
|
- lib
|
103
103
|
required_ruby_version: !ruby/object:Gem::Requirement
|
104
104
|
requirements:
|
105
|
-
- - '>='
|
105
|
+
- - ! '>='
|
106
106
|
- !ruby/object:Gem::Version
|
107
107
|
version: '0'
|
108
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
|
-
- - '>='
|
110
|
+
- - ! '>='
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: '0'
|
113
113
|
requirements: []
|