redmine_extensions 0.0.16 → 0.0.17
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b777c1c2064e27c9f6b30e026fce29122a264dc6
|
4
|
+
data.tar.gz: d0f82db3b87aecf51e580ad80cd4aa6a84d321bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 897ed347c7f071f51cb5dc65afb245189e06170f87939f32fee172fb83ad534bd0e25246320b46ddf0d86a1ffece7a1c731124bea3f1b716b31e8b79497af4c3
|
7
|
+
data.tar.gz: 03c3f96b40fa92dfd89096fde78ccf844aa15e95f094cc7d8da13820c7aed653ddd7af7ba99f40fd22f5dc2a08ede69bc0d4e2309971b73b8fc4132e473b4706
|
@@ -31,18 +31,18 @@ module RedmineExtensions
|
|
31
31
|
empty_directory "#{plugin_path}/lib/#{plugin_name_underscored}/redmine_patch/models"
|
32
32
|
empty_directory "#{plugin_path}/lib/#{plugin_name_underscored}/redmine_patch/others"
|
33
33
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
34
|
+
template '.gitkeep.erb', "#{plugin_path}/app/controllers/.gitkeep"
|
35
|
+
template '.gitkeep.erb', "#{plugin_path}/app/helpers/.gitkeep"
|
36
|
+
template '.gitkeep.erb', "#{plugin_path}/app/models/.gitkeep"
|
37
|
+
template '.gitkeep.erb', "#{plugin_path}/app/views/.gitkeep"
|
38
|
+
template '.gitkeep.erb', "#{plugin_path}/db/migrate/.gitkeep"
|
39
|
+
template '.gitkeep.erb', "#{plugin_path}/assets/images/.gitkeep"
|
40
|
+
template '.gitkeep.erb', "#{plugin_path}/assets/javascripts/.gitkeep"
|
41
|
+
template '.gitkeep.erb', "#{plugin_path}/lib/#{plugin_name_underscored}/redmine_patch/others/.gitkeep"
|
42
42
|
|
43
43
|
#template 'Gemfile', "#{plugin_path}/Gemfile"
|
44
44
|
template 'init.rb.erb', "#{plugin_path}/init.rb"
|
45
|
-
|
45
|
+
template 'en.yml.erb', "#{plugin_path}/config/locales/en.yml"
|
46
46
|
template 'routes.rb.erb', "#{plugin_path}/config/routes.rb"
|
47
47
|
template 'hooks.rb.erb', "#{plugin_path}/lib/#{plugin_name_underscored}/hooks.rb"
|
48
48
|
template 'internals.rb.erb', "#{plugin_path}/lib/#{plugin_name_underscored}/internals.rb"
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redmine_extensions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Easy Software Ltd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -151,7 +151,7 @@ files:
|
|
151
151
|
- lib/generators/redmine_extensions/plugin/plugin_generator.rb
|
152
152
|
- lib/generators/redmine_extensions/plugin/templates/Gemfile
|
153
153
|
- lib/generators/redmine_extensions/plugin/templates/after_init.rb.erb
|
154
|
-
- lib/generators/redmine_extensions/plugin/templates/en.yml
|
154
|
+
- lib/generators/redmine_extensions/plugin/templates/en.yml.erb
|
155
155
|
- lib/generators/redmine_extensions/plugin/templates/hooks.rb.erb
|
156
156
|
- lib/generators/redmine_extensions/plugin/templates/init.rb.erb
|
157
157
|
- lib/generators/redmine_extensions/plugin/templates/internals.rb.erb
|