wsdsl 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.5
1
+ 0.1.6
@@ -24,7 +24,7 @@ module ParamsVerification
24
24
  :decimal => /^-?(\d*\.\d+|\d+)$/,
25
25
  :datetime => /^[-\d:T\s]+$/, # "T" is for ISO date format
26
26
  :boolean => /^(1|true|TRUE|T|Y|0|false|FALSE|F|N)$/,
27
- :array => /,/
27
+ #:array => /,/
28
28
  }
29
29
  end
30
30
 
@@ -48,10 +48,10 @@ describe ParamsVerification do
48
48
  validated['seq'].should == %W{a b c d e g}
49
49
  end
50
50
 
51
- it "should raise an exception if a req array param doesn't contain a comma" do
51
+ it "should not raise an exception if a req array param doesn't contain a comma" do
52
52
  service = WSList.all.find{|s| s.url == "services/array_param.xml"}
53
53
  params = {'seq' => "a b c d e g"}
54
- lambda{ ParamsVerification.validate!(params, service.defined_params) }.should raise_exception(ParamsVerification::InvalidParamType)
54
+ lambda{ ParamsVerification.validate!(params, service.defined_params) }.should_not raise_exception(ParamsVerification::InvalidParamType)
55
55
  end
56
56
 
57
57
  it "should raise an exception when a param is of the wrong type" do
data/wsdsl.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{wsdsl}
8
- s.version = "0.1.5"
8
+ s.version = "0.1.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Matt Aimonetti"]
12
- s.date = %q{2011-05-13}
12
+ s.date = %q{2011-05-17}
13
13
  s.description = %q{A Ruby DSL describing Web Services without implementation details.}
14
14
  s.email = %q{mattaimonetti@gmail.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: wsdsl
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.5
5
+ version: 0.1.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Matt Aimonetti
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-13 00:00:00 Z
13
+ date: 2011-05-17 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description: A Ruby DSL describing Web Services without implementation details.