redmine_extensions 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3237ed05a43184ed81a1cfa743249074228a224b
4
- data.tar.gz: a07684df28d158f09ff55db0f674af942ed1ece0
3
+ metadata.gz: b777c1c2064e27c9f6b30e026fce29122a264dc6
4
+ data.tar.gz: d0f82db3b87aecf51e580ad80cd4aa6a84d321bc
5
5
  SHA512:
6
- metadata.gz: b0d9930e01e13a75cc2ba5ad2c49e61882b65b44a3b3137bb44ee53579600f0c8cd4697f5ab4b714c88f4ea938fa012c50afe8ce70da9e8f3bb228430ca15785
7
- data.tar.gz: 984faa4ffe034b55a63c76fb800a486bb7b69805563538a548f4d40a57e8961e35cf5ee37b44dbd6f71414d4c7c91bf62be2c9dd70e03f541f7b2501d5eed1bb
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
- copy_file '.gitkeep', "#{plugin_path}/app/controllers/.gitkeep"
35
- copy_file '.gitkeep', "#{plugin_path}/app/helpers/.gitkeep"
36
- copy_file '.gitkeep', "#{plugin_path}/app/models/.gitkeep"
37
- copy_file '.gitkeep', "#{plugin_path}/app/views/.gitkeep"
38
- copy_file '.gitkeep', "#{plugin_path}/db/migrate/.gitkeep"
39
- copy_file '.gitkeep', "#{plugin_path}/assets/images/.gitkeep"
40
- copy_file '.gitkeep', "#{plugin_path}/assets/javascripts/.gitkeep"
41
- copy_file '.gitkeep', "#{plugin_path}/lib/#{plugin_name_underscored}/redmine_patch/others/.gitkeep"
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
- copy_file 'en.yml', "#{plugin_path}/config/locales/en.yml"
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"
@@ -1,3 +1,3 @@
1
1
  module RedmineExtensions
2
- VERSION = '0.0.16'
2
+ VERSION = '0.0.17'
3
3
  end
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.16
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: 2015-12-15 00:00:00.000000000 Z
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