valvat 0.6.1 → 0.6.2

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: fd3b95aa5d283ec356195df0880ad0e64e446aa3
4
- data.tar.gz: dcaba4e137938936a83fe03d81e56b4b3a87c1d6
3
+ metadata.gz: a11112c9d6ba5fb3bf17de04d3e3a29e9d4396ae
4
+ data.tar.gz: be2eb43d47a2324b16a94f40dca2107a69617fd1
5
5
  SHA512:
6
- metadata.gz: 289ecdaf74f63696bc7ebcd7804ae430c9baa1671544a093291fe335ff8db46e1f655984b5c24fea08b1294234160abc13cffc1195af2f0c62997f5add56adb1
7
- data.tar.gz: ca8d11429b9586fd2c85fde897b9f50cabb1921dadba56dd7b9d7a47d86801b6d54439a400493d3463311a158f9489a3a3189d9d7640b5f0450b4462969766ce
6
+ metadata.gz: 53cd0859a466ace1cf8945c8851ec739cfec407c015594c3740d3b992d77bc7c41793945b0329e9653f7601b03803dd7c9edaf429f55504cc43e6a0b14b7ac01
7
+ data.tar.gz: 3ccb4b764b57374ff27424ba9414eaa2917101b5be24e27b4115d24e58eaf0a37bdc93c67beca0a94f78eb080e1ef3f3eea27c412f928d58f275b32ac148673a
data/.travis.yml CHANGED
@@ -2,6 +2,8 @@ language: ruby
2
2
  rvm:
3
3
  - 2.0.0
4
4
  - 1.9.3
5
+ - jruby-19mode
6
+ - rbx-2.1.1
5
7
  gemfile:
6
8
  - gemfiles/activemodel-4
7
9
  - gemfiles/activemodel-3-2
data/CHANGES.md CHANGED
@@ -1,6 +1,12 @@
1
1
  ### dev
2
2
 
3
- [full changelog](http://github.com/yolk/valvat/compare/v0.6.1...master)
3
+ [full changelog](http://github.com/yolk/valvat/compare/v0.6.2...master)
4
+
5
+ ### 0.6.2 / 2013-11-10
6
+
7
+ [full changelog](http://github.com/yolk/valvat/compare/v0.6.1...v0.6.2)
8
+
9
+ * Added blank? method to Valvat object
4
10
 
5
11
  ### 0.6.1 / 2013-09-02
6
12
 
data/Gemfile CHANGED
@@ -1,6 +1,13 @@
1
- source "http://rubygems.org"
1
+ source 'http://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in valvat.gemspec
4
4
  gemspec
5
5
 
6
6
  gem 'rake'
7
+ gem 'guard-rspec', '~>4.0'
8
+ gem 'rb-fsevent' if RUBY_PLATFORM.include?("x86_64-darwin")
9
+
10
+ platform :rbx do
11
+ gem 'racc'
12
+ gem 'rubysl'
13
+ end
data/README.md CHANGED
@@ -14,7 +14,7 @@ Validates european vat numbers. Standalone or as a ActiveModel validator.
14
14
  * I18n locales for country specific error messages in English, German, Swedish, Italian, Portuguese, Polish, Bulgarian, Romanian and Latvian.
15
15
  * *Experimental* checksum verification
16
16
 
17
- valvat is tested and works with ruby 1.9.3/2.0 and ActiveModel 3.2/4.0
17
+ valvat is tested and works with ruby MRI 1.9.3/2.0 and jruby (in 1.9 mode) and ActiveModel 3.2/4.0
18
18
 
19
19
  ## Installation
20
20
 
@@ -1,8 +1,13 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gem "savon", "2.3.0"
4
- gem "activemodel", "3.2.13"
4
+ gem "activemodel", "3.2.15"
5
5
 
6
- gem 'rspec', '>= 2.4.0'
6
+ gem 'rspec', '>= 2.14.0'
7
7
  gem 'fakeweb', '>= 1.3.0'
8
- gem 'rake'
8
+ gem 'rake'
9
+
10
+ platform :rbx do
11
+ gem 'racc'
12
+ gem 'rubysl'
13
+ end
@@ -1,8 +1,13 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gem "savon", "2.3.0"
4
- gem "activemodel", "4.0"
4
+ gem "activemodel", "4.0.1"
5
5
 
6
- gem 'rspec', '>= 2.4.0'
6
+ gem 'rspec', '>= 2.14.0'
7
7
  gem 'fakeweb', '>= 1.3.0'
8
- gem 'rake'
8
+ gem 'rake'
9
+
10
+ platform :rbx do
11
+ gem 'racc'
12
+ gem 'rubysl'
13
+ end
data/gemfiles/standalone CHANGED
@@ -2,6 +2,11 @@ source "http://rubygems.org"
2
2
 
3
3
  gem "savon", "2.3.0"
4
4
 
5
- gem 'rspec', '>= 2.4.0'
5
+ gem 'rspec', '>= 2.14.0'
6
6
  gem 'fakeweb', '>= 1.3.0'
7
- gem 'rake'
7
+ gem 'rake'
8
+
9
+ platform :rbx do
10
+ gem 'racc'
11
+ gem 'rubysl'
12
+ end
@@ -1,3 +1,3 @@
1
1
  class Valvat
2
- VERSION = "0.6.1"
2
+ VERSION = "0.6.2"
3
3
  end
data/lib/valvat.rb CHANGED
@@ -6,6 +6,10 @@ class Valvat
6
6
 
7
7
  attr_reader :raw, :vat_country_code, :to_s_wo_country
8
8
 
9
+ def blank?
10
+ raw.nil? || raw.strip == ""
11
+ end
12
+
9
13
  def valid?
10
14
  Valvat::Syntax.validate(self)
11
15
  end
@@ -5,17 +5,35 @@ describe Valvat::Lookup do
5
5
  context "existing vat number" do
6
6
 
7
7
  it "returns true" do
8
- Valvat::Lookup.validate("DE259597697").should eql(true)
8
+ result = Valvat::Lookup.validate("LU21416127")
9
+
10
+ unless result.nil?
11
+ result.should eql(true)
12
+ else
13
+ puts "Skipping LU vies lookup spec"
14
+ end
9
15
  end
10
16
 
11
17
  it "allows Valvat instance as input" do
12
- Valvat::Lookup.validate(Valvat.new("DE259597697")).should eql(true)
18
+ result = Valvat::Lookup.validate(Valvat.new("LU21416127"))
19
+
20
+ unless result.nil?
21
+ result.should eql(true)
22
+ else
23
+ puts "Skipping LU vies lookup spec"
24
+ end
13
25
  end
14
26
  end
15
27
 
16
28
  context "not existing vat number" do
17
29
  it "returns false" do
18
- Valvat::Lookup.validate("DE259597696").should eql(false)
30
+ result = Valvat::Lookup.validate("LU21416128")
31
+
32
+ unless result.nil?
33
+ result.should eql(false)
34
+ else
35
+ puts "Skipping LU vies lookup spec"
36
+ end
19
37
  end
20
38
  end
21
39
 
@@ -60,23 +78,35 @@ describe Valvat::Lookup do
60
78
  end
61
79
 
62
80
  it "still returns false on not existing vat number" do
63
- Valvat::Lookup.validate("DE259597696", :detail => true).should eql(false)
81
+ result = Valvat::Lookup.validate("LU21416128", :detail => true)
82
+
83
+ unless result.nil?
84
+ result.should eql(false)
85
+ else
86
+ puts "Skipping LU vies lookup spec"
87
+ end
64
88
  end
65
89
  end
66
90
 
67
91
  context "with request identifier" do
68
92
  it "returns hash of details instead of true" do
69
- response = Valvat::Lookup.validate("DE259597697", :requester_vat => "IE6388047V")
70
- response[:request_identifier].size.should eql(16)
71
- request_identifier = response[:request_identifier]
72
- response.delete(:request_date).should be_kind_of(Date)
73
- response.should eql({
74
- :country_code=>"DE",
75
- :vat_number=>"259597697",
76
- :name => nil,
77
- :company_type=>nil,
78
- :request_identifier=> request_identifier
79
- })
93
+ response = Valvat::Lookup.validate("LU21416127", :requester_vat => "IE6388047V")
94
+
95
+ if response
96
+ response[:request_identifier].size.should eql(16)
97
+ request_identifier = response[:request_identifier]
98
+ response.delete(:request_date).should be_kind_of(Date)
99
+ response.should eql({
100
+ :country_code=>"LU",
101
+ :vat_number=>"21416127",
102
+ :name => "EBAY EUROPE S.A R.L.",
103
+ :company_type=>nil,
104
+ :address => "22, BOULEVARD ROYAL\nL-2449 LUXEMBOURG",
105
+ :request_identifier=> request_identifier
106
+ })
107
+ else
108
+ puts "Skipping LU vies lookup spec"
109
+ end
80
110
  end
81
111
  end
82
112
 
data/spec/valvat_spec.rb CHANGED
@@ -28,6 +28,22 @@ describe Valvat do
28
28
  end
29
29
  end
30
30
 
31
+
32
+ describe "#blank?" do
33
+
34
+ it "returns true when when initialized with nil" do
35
+ Valvat.new(nil).should be_blank
36
+ end
37
+
38
+ it "returns true when when initialized with an empty string" do
39
+ Valvat.new(" ").should be_blank
40
+ end
41
+
42
+ it "returns false when initialized with a value" do
43
+ Valvat.new("DE259597697").should_not be_blank
44
+ end
45
+ end
46
+
31
47
  context "on european vat number" do
32
48
  let(:de_vat) { Valvat.new("DE259597697") } # valid & exists
33
49
  let(:invalid_checksum) { Valvat.new("DE259597687") } # valid & invalid checksum
@@ -274,4 +290,4 @@ describe Valvat do
274
290
  end
275
291
 
276
292
  end
277
- end
293
+ end
data/valvat.gemspec CHANGED
@@ -23,9 +23,6 @@ Gem::Specification.new do |s|
23
23
  s.add_dependency 'savon', '>=2.3.0'
24
24
 
25
25
  s.add_development_dependency 'rspec', '>= 2.4.0'
26
- s.add_development_dependency 'guard-rspec', '>=0.1.9'
27
- s.add_development_dependency 'growl', '>=1.0.3'
28
- s.add_development_dependency 'rb-fsevent', '>=0.9.1'
29
26
  s.add_development_dependency 'activemodel', '>=3.0'
30
27
  s.add_development_dependency 'fakeweb', '>= 1.3.0'
31
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valvat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Munz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-02 00:00:00.000000000 Z
11
+ date: 2013-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: savon
@@ -38,48 +38,6 @@ dependencies:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: 2.4.0
41
- - !ruby/object:Gem::Dependency
42
- name: guard-rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - '>='
46
- - !ruby/object:Gem::Version
47
- version: 0.1.9
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - '>='
53
- - !ruby/object:Gem::Version
54
- version: 0.1.9
55
- - !ruby/object:Gem::Dependency
56
- name: growl
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - '>='
60
- - !ruby/object:Gem::Version
61
- version: 1.0.3
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - '>='
67
- - !ruby/object:Gem::Version
68
- version: 1.0.3
69
- - !ruby/object:Gem::Dependency
70
- name: rb-fsevent
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - '>='
74
- - !ruby/object:Gem::Version
75
- version: 0.9.1
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - '>='
81
- - !ruby/object:Gem::Version
82
- version: 0.9.1
83
41
  - !ruby/object:Gem::Dependency
84
42
  name: activemodel
85
43
  requirement: !ruby/object:Gem::Requirement