sunzi-rails 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sunzi/version.rb +1 -1
- data/lib/sunzi.rb +6 -6
- 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: 1f6d465214041c17df102adad8a1c44c35b196fe
|
4
|
+
data.tar.gz: e6f44cd8db97ae6162d6ddea75e9c3226787422d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24f53ba372485b7c53c0f2d3bc39f169b5c5b5b190ae4f6ca4b9cb017d91473ceb78905d1451e7bba37e38a03064ac11a01ad4536f323ee3f2a7652a7260e801
|
7
|
+
data.tar.gz: e63cc767676f7ee042dbc1daf7c861ed7ac3b1dd3aa4ebd7686d224e5617fd59d10766ff1cbaac93ddb3b8832922080a8b3cb4ceea5dcfceeda13791309c3772
|
data/lib/sunzi/version.rb
CHANGED
data/lib/sunzi.rb
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
+
require 'active_support/core_ext/hash/slice'
|
2
|
+
require 'active_support/core_ext/hash/indifferent_access'
|
3
|
+
require 'active_support/ordered_hash'
|
4
|
+
require 'active_support/hash_with_indifferent_access'
|
1
5
|
require 'thor'
|
2
6
|
require 'rainbow'
|
3
7
|
# Starting 2.0.0, Rainbow no longer patches string with the color method by default.
|
4
8
|
require 'rainbow/version'
|
5
9
|
require 'rainbow/ext/string' unless Rainbow::VERSION < '2.0.0'
|
6
10
|
require 'yaml'
|
7
|
-
require '
|
8
|
-
require '
|
9
|
-
require 'active_support/ordered_hash'
|
10
|
-
require 'active_support/hash_with_indifferent_access'
|
11
|
+
require 'sunzi/utility'
|
12
|
+
require 'sunzi/cli'
|
11
13
|
require 'sunzi/cli/capistrano'
|
12
14
|
require 'sunzi/cli/database'
|
13
15
|
require 'sunzi/cli/secrets'
|
14
|
-
require 'sunzi/cli'
|
15
16
|
require 'sunzi/logger'
|
16
|
-
require 'sunzi/utility'
|
17
17
|
require 'sunzi/version'
|
18
18
|
|
19
19
|
module Sunzi
|