sfn 0.4.2 → 0.4.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b928b4c57f5d582bce0d73934c23050ff0e07ac7
4
- data.tar.gz: 82f75e5d58b685e698ea3edca312e4af96475c5e
3
+ metadata.gz: d33ed9a875f4b1b36ad1161ffc8b2487009a65fa
4
+ data.tar.gz: aa64480e2fca7f39eed6e2c9944a117302534d0d
5
5
  SHA512:
6
- metadata.gz: 2d23e864b2bcf3a1bd2a65b03cf39f77d3567bf71ba096da345490b51335e690113d40269255bff269350419062658de9fb22e787fffa54f5f8534751faa3bef
7
- data.tar.gz: 96a7cbd6305ef49f5d5707fb0763972bad64c3d683b21daa4a3b57e7fefe9a44bc7cc6ba52c8ca76f638f787bf8e0f583275c6c3a326aa4dced08d347322f1d4
6
+ metadata.gz: 6e01d43ab5f6d294ceb06dc01fea782358ba79312c676c9a1f81303c667036e44155eb6906bba1157f95ab3d027a6433d8fc95fb2711c9ae44f5234ea7cf32b1
7
+ data.tar.gz: 1dc70008c1133f2b70604193b285eb79123ef2ec76877c6ab0d8e1715584a2714e7893774fe61f71e2ffc30b13c372ebe5d86a059b1a70425ec6ebefd07e2a27
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.4.4
2
+ * Add a few more config fixes to properly validate
3
+
1
4
  ## v0.4.2
2
5
  * Fix config types defined
3
6
 
@@ -21,7 +21,6 @@ module Sfn
21
21
  )
22
22
  attribute(
23
23
  :options, Smash,
24
- :multiple => true,
25
24
  :description => 'Extra options to apply to the API call'
26
25
  )
27
26
  attribute(
@@ -13,7 +13,8 @@ module Sfn
13
13
  attribute(
14
14
  :poll_delay, Integer,
15
15
  :default => 20,
16
- :description => 'Seconds to pause between each event poll'
16
+ :description => 'Seconds to pause between each event poll',
17
+ :coerce => lambda{|v| v.to_i}
17
18
  )
18
19
  attribute(
19
20
  :all_attributes, [TrueClass, FalseClass],
@@ -33,7 +33,8 @@ module Sfn
33
33
  )
34
34
  attribute(
35
35
  :translate_chunk, Integer,
36
- :description => 'Chunk length for serialization'
36
+ :description => 'Chunk length for serialization',
37
+ :coerce => lambda{|v| v.to_i}
37
38
  )
38
39
  attribute(
39
40
  :apply_nesting, [TrueClass, FalseClass],
data/lib/sfn/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Sfn
2
2
  # Current library version
3
- VERSION = Gem::Version.new('0.4.2')
3
+ VERSION = Gem::Version.new('0.4.4')
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: 0.4.2
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-08 00:00:00.000000000 Z
11
+ date: 2015-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bogo-cli