sunzi-rails 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/sunzi-cap +0 -5
- data/lib/sunzi.rb +4 -0
- data/lib/sunzi/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: e43ac5d7c906e6485ec101bb0a9770928eaee7b7
|
4
|
+
data.tar.gz: 01575aca2a9010abafb8d343e53d1f183d7a73f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 399a6f11f0da8fbc40a7341fa4924e79da4caf5a74bcd36bdebcc3abba366c2619ac0ae33583df94ebe30fd565b53ed8cf9d8fca5f8cfe8020837a7a7a310dcb
|
7
|
+
data.tar.gz: e08254da13ee0d2d6e381fbb95067166ba69606930b71164bafcf89f2a14cf0bd59a7fe2979e4cbc0beb4d182bf118bf619ca9d138b031d05f1354ec87846d9e
|
data/bin/sunzi-cap
CHANGED
@@ -19,9 +19,4 @@ if ['-v', '--version'].include? ARGV[0]
|
|
19
19
|
exit 0
|
20
20
|
end
|
21
21
|
|
22
|
-
require 'active_support/core_ext/hash/slice'
|
23
|
-
require 'active_support/core_ext/hash/indifferent_access'
|
24
|
-
require 'active_support/ordered_hash'
|
25
|
-
require 'active_support/hash_with_indifferent_access'
|
26
|
-
|
27
22
|
Sunzi::Cli.start
|
data/lib/sunzi.rb
CHANGED
@@ -2,6 +2,10 @@ require 'thor'
|
|
2
2
|
require 'rainbow'
|
3
3
|
require 'yaml'
|
4
4
|
require 'sunzi/version'
|
5
|
+
require 'active_support/core_ext/hash/slice'
|
6
|
+
require 'active_support/core_ext/hash/indifferent_access'
|
7
|
+
require 'active_support/ordered_hash'
|
8
|
+
require 'active_support/hash_with_indifferent_access'
|
5
9
|
|
6
10
|
# Starting 2.0.0, Rainbow no longer patches string with the color method by default.
|
7
11
|
require 'rainbow/version'
|
data/lib/sunzi/version.rb
CHANGED