sfn 3.0.16 → 3.0.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8a619bd6ea2b1d0125319a37663fb483ea8c55a
4
- data.tar.gz: b9fc234a4a06d97b53c8601dc1f03afed3e6af59
3
+ metadata.gz: 1e0e8bc2bc5c05f56fe561d245c6e713462ea8ce
4
+ data.tar.gz: b1e750978c0762edf2f7c1f4abfb2d4195afb551
5
5
  SHA512:
6
- metadata.gz: 26587c0aca21c8d22eb6a991595cbd66254f8e199b1e6e66bf7f216e96df3e96385f8bfaa048d1c1e796100db5e37c66093f1320682fd32f13bd160889b4b776
7
- data.tar.gz: 6006bf1083b91c355d384eb83df5e6b02930f58fdc7bd155a56a9facdb59a62d6b1e19e992cdb328ae630f050b28b9aa48a0cd98f85a866730e57476b34226bf
6
+ metadata.gz: cafe68c3e0a8e504ff5944a1f3ba3de88746cfeed2aad1cdc2bcd2074cd3af9464ff56432f3f847ba63c20366cc225ebfcc7430b6c8c8ad9691448ddc2e62a74
7
+ data.tar.gz: 9d8e08912ff14edc21f19f231e87a3b6f948991948d4c27300ad83942a000a3a607701f28939ec6e2a7a1fdce2c130351671f746c49300385181a64388cd24b4
@@ -1,3 +1,6 @@
1
+ # v3.0.18
2
+ * [enhancement] Add `colors` flag to CLI commands
3
+
1
4
  # v3.0.16
2
5
  * [enhancement] Update output format of lint command(#212)
3
6
  * [fix] Fix parameter scrub to use instance method
@@ -103,6 +103,11 @@ module Sfn
103
103
  :description => 'Enable debug output',
104
104
  :short_flag => 'u'
105
105
  )
106
+ attribute(
107
+ :colors, [TrueClass, FalseClass],
108
+ :description => 'Enable colorized output',
109
+ :default => true
110
+ )
106
111
 
107
112
  attribute :conf, Conf, :coerce => proc{|v| Conf.new(v)}
108
113
  attribute :create, Create, :coerce => proc{|v| Create.new(v)}
@@ -1,4 +1,4 @@
1
1
  module Sfn
2
2
  # Current library version
3
- VERSION = Gem::Version.new('3.0.16')
3
+ VERSION = Gem::Version.new('3.0.18')
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sfn
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.16
4
+ version: 3.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-14 00:00:00.000000000 Z
11
+ date: 2016-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bogo-cli