souls 0.8.8 → 0.8.9
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/Gemfile.lock +1 -1
- data/exe/souls +3 -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: a805d220db3a397f804739f3e1b23bd78b77e1ca23953abbf1b88a473a818967
|
|
4
|
+
data.tar.gz: b780848b2039100bccfd3afecec4b4bebe2a0656e7bd5e978f1aa553fddeb082
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 815c4d0fbfc43dd9844e8d995a667b52fcda667e1379be448a75ba70024a6c9ccae2efcb4059ecc713bf0a903a64e1b3cea3ad739807105b0a8299dda3714114
|
|
7
|
+
data.tar.gz: d7799896e331fcc85c6c33f66fc2890651b6933c046bb85f6d26396e62654dc16833c04c97ff52a9cb67745d8f7a62830750c1527aecafa71ccd1125d8ce73a1
|
data/Gemfile.lock
CHANGED
data/exe/souls
CHANGED
|
@@ -57,8 +57,10 @@ begin
|
|
|
57
57
|
Souls::Init.query class_name: ARGV[2]
|
|
58
58
|
when "type"
|
|
59
59
|
Souls::Init.type class_name: ARGV[2]
|
|
60
|
-
when "
|
|
60
|
+
when "migrate"
|
|
61
61
|
Souls::Init.migration class_name: ARGV[2]
|
|
62
|
+
when "migration"
|
|
63
|
+
`rake db:create_migration NAME=#{ARGV[3]}`
|
|
62
64
|
when "rspec_factory"
|
|
63
65
|
Souls::Init.rspec_factory class_name: ARGV[2]
|
|
64
66
|
when "rspec_model"
|
data/lib/souls/version.rb
CHANGED