ibanomat 0.0.1 → 0.0.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: 76e4e810a057a2f21337f50c6f130cbbe764c4bf
4
- data.tar.gz: f2820107f6e46f2359f9b8fb8d32b5d02f15c9b7
3
+ metadata.gz: c57fd3363cd761f674e615050240a1791a472d9b
4
+ data.tar.gz: 7e4bf8964a263be58bc05635bdd81a5584948708
5
5
  SHA512:
6
- metadata.gz: d4576c9af69acfb500df61a8f9ec288253107ff2596c9506fe35c42fa829f049458ccbd3c3887b23fe26358217f7d3dc50ab6e50c957c2f1ab6cb9a33198b65f
7
- data.tar.gz: 769aa0d16f6efc064ebef70b3997cffc9bf69344fb0b6755011629490815fcad9250deeb4f70e7b4f56e31d42a569027dd16eec43a6466fe15977b140e5fe9e1
6
+ metadata.gz: 90b70fcf788bd171e77f64d1447c78f8dd417845bda0adde97872ede5c6b3481d991c85e7f4bab9feaaa2f66af21ba6488865b6ceded66c712853e1b73ca6ed9
7
+ data.tar.gz: 89f13542ce29d08c7fb16df4dabf56e258a8a3101facf83f042ca98e5193c7386d3a88afac81b5761d0be53f55259e73b0690618b8ddab81d84ecf2bf8e8994b
data/.gitignore CHANGED
@@ -11,6 +11,7 @@ spec/reports
11
11
  test/tmp
12
12
  test/version_tmp
13
13
  tmp
14
+ Gemfile.lock
14
15
 
15
16
  # YARD artifacts
16
17
  .yardoc
data/README.md CHANGED
@@ -5,9 +5,9 @@
5
5
  [![Gem Version](https://badge.fury.io/rb/ibanomat.png)](http://badge.fury.io/rb/ibanomat)
6
6
  [![Dependency Status](https://gemnasium.com/ledermann/ibanomat.png)](https://gemnasium.com/ledermann/ibanomat)
7
7
 
8
- The gem is a wrapper for a [web service of the german "Sparkasse"](http://www.sparkasse.de/firmenkunden/konto-karte/iban-rechner.html). It calculates the **IBAN** for a given Bankleitzahl (BLZ) and bank account number. Behind the scenes the web service returns JSON ([Example here](http://www.sparkasse.de/firmenkunden/konto-karte/iban-resources/iban/iban.php?bank-code=37040044&bank-account-number=0532013000))
8
+ The gem is a wrapper for a [web service of the german "Sparkasse"](http://www.sparkasse.de/firmenkunden/konto-karte/iban-rechner.html). It calculates the **IBAN** for a given bank code (in German "Bankleitzahl") and bank account number ("Kontonummer"). Behind the scenes the web service returns JSON ([Example here](http://www.sparkasse.de/firmenkunden/konto-karte/iban-resources/iban/iban.php?bank-code=37040044&bank-account-number=0532013000))
9
9
 
10
- **WARNING: I'm not affiliated in any way with the web service or the Sparkasse. The web service seems not to be official. Maybe it will be offline soon. I don't find any terms of use on their website. Use this gem at your own risk!**
10
+ **WARNING: I'm not affiliated in any way with the web service or the Sparkasse. The web service seems not to be official. Maybe it will be offline soon. I didn't find any terms of use on their website. Use this gem at your own risk!**
11
11
 
12
12
 
13
13
  ## Installation
@@ -29,12 +29,11 @@ Or install it yourself as:
29
29
 
30
30
  ```ruby
31
31
  Ibanomat.find :bank_code => '37040044', :bank_account_number => '0532013000'
32
-
33
32
  # =>
34
33
  # {
35
34
  # :bank_name => 'Commerzbank',
36
- # :bic => 'COBADEFFXXX',
37
- # :iban => 'DE89370400440532013000',
35
+ # :bic => 'COBADEFFXXX',
36
+ # :iban => 'DE89370400440532013000'
38
37
  # }
39
38
  ```
40
39
 
@@ -1,3 +1,3 @@
1
1
  module Ibanomat
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ibanomat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Ledermann
@@ -105,7 +105,6 @@ files:
105
105
  - .rspec
106
106
  - .travis.yml
107
107
  - Gemfile
108
- - Gemfile.lock
109
108
  - LICENSE
110
109
  - README.md
111
110
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,41 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- ibanomat (0.0.1)
5
- json
6
- rest-client
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- addressable (2.3.5)
12
- crack (0.4.1)
13
- safe_yaml (~> 0.9.0)
14
- diff-lcs (1.2.4)
15
- json (1.8.0)
16
- mime-types (1.24)
17
- rake (10.1.0)
18
- rest-client (1.6.7)
19
- mime-types (>= 1.16)
20
- rspec (2.14.1)
21
- rspec-core (~> 2.14.0)
22
- rspec-expectations (~> 2.14.0)
23
- rspec-mocks (~> 2.14.0)
24
- rspec-core (2.14.5)
25
- rspec-expectations (2.14.2)
26
- diff-lcs (>= 1.1.3, < 2.0)
27
- rspec-mocks (2.14.3)
28
- safe_yaml (0.9.5)
29
- webmock (1.13.0)
30
- addressable (>= 2.2.7)
31
- crack (>= 0.3.2)
32
-
33
- PLATFORMS
34
- ruby
35
-
36
- DEPENDENCIES
37
- bundler (~> 1.3)
38
- ibanomat!
39
- rake
40
- rspec (~> 2.14)
41
- webmock