jackal 0.3.8 → 0.3.10

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: 325d02d0bc708ec37c2935914fed6563e98dce58
4
- data.tar.gz: b0ea2471f5c1b3384244696328fbe1c5d2fec662
3
+ metadata.gz: 1b2dc6038e53678793359a6a8df8c8a44be1142c
4
+ data.tar.gz: bfa8505b16fea3b018b7f7b2b87b19d421516f6b
5
5
  SHA512:
6
- metadata.gz: f0821bf876e9fa4a10fc49b5527f0c95f3fc1d9eaa15a255468ea8a9e229708a100070098d5e5deda6b8bc8dae6fc2ddfaeea45debb243bdabd58003ee824831
7
- data.tar.gz: 0910d75f25adad9b539707bd7ab89d543f23e9600204330166ae3489b787663e118b659de193a0bf61c07645d81af095662a529e4ba8f1f5f3a5d3c746f2937b
6
+ metadata.gz: 017e4b75a458bfc4a2da1bf64656c15fb5c0926ef374fa09964df856e0c27c1d51c8cb263d62816ee51403664d7739c1a38c5af2dd5ee90695e39dd0dc2357c3
7
+ data.tar.gz: fea17a6e85acca71f78889467bf7d19fa6c0b07634ec272175bac04218af9397f14e767db0166da8cab0ddbd00117d420389451bfcc37f71a4180fd29c14d99e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v0.3.10
2
+ * Add `:array` to allowed values for configuration type in service registration
3
+
1
4
  # v0.3.8
2
5
  * Expansion of testing helpers
3
6
  * Addition of `category` to service registration
@@ -1,4 +1,4 @@
1
1
  module Jackal
2
2
  # Current library version
3
- VERSION = Gem::Version.new('0.3.8')
3
+ VERSION = Gem::Version.new('0.3.10')
4
4
  end
data/lib/jackal.rb CHANGED
@@ -12,7 +12,7 @@ module Jackal
12
12
  class ServiceInformation < Bogo::Config
13
13
  class Configuration < Bogo::Config
14
14
  attribute :name, Symbol, :required => true, :coerce => lambda{|v| v.to_sym}
15
- attribute :type, Symbol, :required => true, :default => :string, :allowed_values => [:string, :hash, :number, :boolean]
15
+ attribute :type, Symbol, :required => true, :default => :string, :allowed_values => [:string, :hash, :array, :number, :boolean]
16
16
  attribute :description, String
17
17
  attribute :public, [TrueClass, FalseClass], :default => true, :required => true
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jackal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.8
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts