outliers 0.5.0.beta1 → 0.5.0.beta2

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: e21b9c0b8c0b80d467c4deedbd9e2f0911b44fcc
4
- data.tar.gz: e14dbca5caad874380dc33a7e2e8edebd4884556
3
+ metadata.gz: cb0feb018d90f51f8ff6e487ca1f998a8caa159e
4
+ data.tar.gz: 1e4fce7ffb9366090015f6faba8c2cbc62765b78
5
5
  SHA512:
6
- metadata.gz: 6aa6ca8c8f0bcd4a4923f9c89b61cf93c5224754fdce113b69c1f4f039d7cf97a1d9cacb68781081502d8ceaff50089368e7f174d8cc262eda6c6a3d8c5a0511
7
- data.tar.gz: a957f1bd5eeb096f930ff27ecdaf864dbba496d2aa8732081a4921f7ddb87bfddd65f62c53045d718e641963e4dbd6436ba4558a5e6f71fb5866c8f2a25daa1e
6
+ metadata.gz: a1f0b6c91d8fc01c35bb5a3350879ead6b0572258579ae84be98f43ad8e18c701958b8346e8f9a36c2a7fa1e7ae5d96b58161ad8fa78fc2151cf233aa8922508
7
+ data.tar.gz: 2084159476cd4acc1186b84d73892b30dbde2bd17703ffce9ac55697c91abfaacb051a7a5f1c2cbc53c55a087499b7a445cf00fc0460ba36533e1e096cc53a80
data/README.md CHANGED
@@ -89,4 +89,4 @@ See [examples](http://www.getoutliers.com/documentation/examples) for a list of
89
89
 
90
90
  ## Documentation
91
91
 
92
- See [providers](http://www.getoutliers.com/documentation/providers), [resources](http://www.getoutliers.com/documentation/resources) and [filters](http://www.getoutliers.com/documentation/filters) for additional documentation.
92
+ See more information on the Outliers DSL see the [documentation](http://www.getoutliers.com/documentation) page.
@@ -82,9 +82,9 @@ module Outliers
82
82
  end
83
83
 
84
84
  def convert_verification_arguments(arguments)
85
- return Array(arguments) if arguments.is_a?(Array) || arguments.is_a?(String)
85
+ return Array(arguments) if arguments.is_a?(Array) || arguments.is_a?(String) || arguments.is_a?(Integer)
86
86
  return nil if arguments.is_a?(NilClass)
87
- raise Outliers::Exceptions::InvalidArguments.new "Verification arguments '#{arguments}' invalid. Must be a string or array."
87
+ raise Outliers::Exceptions::InvalidArguments.new "Verification arguments '#{arguments}' invalid. Must be a string, integer or array."
88
88
  end
89
89
 
90
90
  def set_provider_name_array
@@ -1,3 +1,3 @@
1
1
  module Outliers
2
- VERSION = "0.5.0.beta1"
2
+ VERSION = "0.5.0.beta2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: outliers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0.beta1
4
+ version: 0.5.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Weaver