souls 0.11.7 → 0.11.8
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/lib/souls/init.rb +1 -1
- data/lib/souls/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 696c6d3b5705e34a38a0dcc9b72a2d41cd5c23554155fce2c8928ee50018af88
|
|
4
|
+
data.tar.gz: aec799376bf62420d4a34886c61a051688e7b3838458611c7f52c775a7bb328f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c24f73e30a5189a34206d3da1b00f44f14075aa1d3f424b6a024fcd2929a3f065e3b96da3eec3628a823f80d448d4d1e3dd456a44dcc1eb24fb36c29e6bb951f
|
|
7
|
+
data.tar.gz: e1621cfdbcc1878be1742a9ae06d3bfb2dfadeb4a401f35b1c80f2463b05fbb7445b349de04df0486373022f3a0597a0e8110a17d5d59c25e44609b25b7d71d6
|
data/lib/souls/init.rb
CHANGED
|
@@ -648,7 +648,7 @@ module Souls
|
|
|
648
648
|
f.each_line.with_index do |line, i|
|
|
649
649
|
if @on
|
|
650
650
|
if line.include?("end") || line.include?("t.index")
|
|
651
|
-
new_line.write " }) {\n #{class_name.singularize.camelize} {\n id\n"
|
|
651
|
+
new_line.write " }) {\n #{class_name.singularize.camelize(:lower)} {\n id\n"
|
|
652
652
|
break
|
|
653
653
|
end
|
|
654
654
|
type, name = line.split(",")[0].gsub("\"", "").scan(/((?<=t\.).+(?=\s)) (.+)/)[0]
|
data/lib/souls/version.rb
CHANGED