redmine_extensions 0.0.17 → 0.0.18

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: b777c1c2064e27c9f6b30e026fce29122a264dc6
4
- data.tar.gz: d0f82db3b87aecf51e580ad80cd4aa6a84d321bc
3
+ metadata.gz: 819759a42ce63ed87fb572ed29353e3e257e2aea
4
+ data.tar.gz: 5755dc4029d5bcab2e252f1b0a0da99388d98306
5
5
  SHA512:
6
- metadata.gz: 897ed347c7f071f51cb5dc65afb245189e06170f87939f32fee172fb83ad534bd0e25246320b46ddf0d86a1ffece7a1c731124bea3f1b716b31e8b79497af4c3
7
- data.tar.gz: 03c3f96b40fa92dfd89096fde78ccf844aa15e95f094cc7d8da13820c7aed653ddd7af7ba99f40fd22f5dc2a08ede69bc0d4e2309971b73b8fc4132e473b4706
6
+ metadata.gz: 4a070f4a48b5c572b34fc988bb301e8df30b8cd60029c534ed757b490a2e439c7f5b1d1a5aa129baa6bb1bac49ca62056056f021cb3e0c142996d7087d98b8cf
7
+ data.tar.gz: cf66c2c61870826dda6cfeafec72643513f8b947608f4992251b024a39e629c3efec4e75953a6d63e65017d7760238c5bc6976a7a3863113cd54aed8a9e7f321
@@ -31,16 +31,16 @@ 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
- 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
-
43
- #template 'Gemfile', "#{plugin_path}/Gemfile"
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
+
43
+ template 'Gemfile.erb', "#{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"
@@ -1,3 +1,3 @@
1
1
  module RedmineExtensions
2
- VERSION = '0.0.17'
2
+ VERSION = '0.0.18'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmine_extensions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Easy Software Ltd
@@ -149,9 +149,10 @@ files:
149
149
  - lib/generators/redmine_extensions/entity/templates/show.html.erb.erb
150
150
  - lib/generators/redmine_extensions/plugin/USAGE
151
151
  - lib/generators/redmine_extensions/plugin/plugin_generator.rb
152
- - lib/generators/redmine_extensions/plugin/templates/Gemfile
152
+ - lib/generators/redmine_extensions/plugin/templates/Gemfile.erb
153
153
  - lib/generators/redmine_extensions/plugin/templates/after_init.rb.erb
154
154
  - lib/generators/redmine_extensions/plugin/templates/en.yml.erb
155
+ - lib/generators/redmine_extensions/plugin/templates/gitkeep.erb
155
156
  - lib/generators/redmine_extensions/plugin/templates/hooks.rb.erb
156
157
  - lib/generators/redmine_extensions/plugin/templates/init.rb.erb
157
158
  - lib/generators/redmine_extensions/plugin/templates/internals.rb.erb