mushin 0.45.0 → 0.46.0
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 +4 -4
- data/exe/generator.rb +2 -2
- data/lib/mushin/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c8e9215af861fa786e01315d84f4ca1ccc43447
|
4
|
+
data.tar.gz: b6de4bd35f7205b209cf49de0e65b8dd42540e61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c969915c530e3b5649270dd9be5e95678b9bc27e562c7d4bd84cf840ba0760cd16a6275602ed37ee120849f11bf531ca4ec32e476bc85055fa7f4e6e0806642
|
7
|
+
data.tar.gz: 48e7593f5ba32b329e7f7a55bdc3df87ea18e236050547a34bc2179e923da7dee6ab18191db57d1d3ed36fa35d366d35d08354c2e20cca439418be2d350e7e3f
|
data/exe/generator.rb
CHANGED
@@ -208,8 +208,8 @@ end
|
|
208
208
|
#create_file "./#{name}/lib/#{name}.rb"
|
209
209
|
|
210
210
|
#NOTE renaming lib/name.rb file to be able to require the gem with the same name
|
211
|
-
puts "renaming lib/#{name}.rb to lib/
|
212
|
-
system("mv ./#{name}/lib/#{name}.rb ./#{name}/lib/
|
211
|
+
puts "renaming lib/#{name}.rb to lib/mushin_dsf_#{name.downcase}.rb "
|
212
|
+
system("mv ./#{name}/lib/#{name}.rb ./#{name}/lib/mushin_dsf_#{name.downcase}.rb")
|
213
213
|
|
214
214
|
#NOTE creates an empty /ext dir in the generated DSF for experimental extensions before extracting them into gems
|
215
215
|
puts "creating an empty /ext dir for experimental extenstions"
|
data/lib/mushin/version.rb
CHANGED