banking_data 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +4 -0
- data/.gitignore +5 -0
- data/.rspec +1 -0
- data/.rubocop.yml +1 -0
- data/.travis.yml +11 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +20 -0
- data/README.md +32 -0
- data/banking_data.gemspec +28 -0
- data/data/BLZ_20130909.txt +19300 -0
- data/data/bcbankenstamm.txt +3555 -0
- data/data/kiverzeichnis_gesamt_de_1381499802577.csv +5193 -0
- data/lib/banking_data/austrian_bank.rb +30 -0
- data/lib/banking_data/bank.rb +23 -0
- data/lib/banking_data/german_bank.rb +21 -0
- data/lib/banking_data/swiss_bank.rb +23 -0
- data/lib/banking_data/version.rb +4 -0
- data/lib/banking_data.rb +11 -0
- data/rubocop-todo.yml +24 -0
- data/spec/banking_data/austrian_bank_spec.rb +15 -0
- data/spec/banking_data/bank_spec.rb +8 -0
- data/spec/banking_data/german_bank_spec.rb +13 -0
- data/spec/banking_data/swiss_bank_spec.rb +15 -0
- data/spec/banking_data_spec.rb +5 -0
- data/spec/spec_helper.rb +29 -0
- metadata +206 -0
data/.document
ADDED
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour --format documentation
|
data/.rubocop.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: rubocop-todo.yml
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2013 Frank C. Eckert
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# Banking Data
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/opahk/banking_data.png?branch=master)](https://travis-ci.org/opahk/banking_data)
|
4
|
+
[![Coverage Status](https://coveralls.io/repos/opahk/banking_data/badge.png?branch=master)](https://coveralls.io/r/opahk/banking_data?branch=master)
|
5
|
+
[![Code Climate](https://codeclimate.com/github/opahk/banking_data.png)](https://codeclimate.com/github/opahk/banking_data)
|
6
|
+
|
7
|
+
Banking data (including SWIFT-codes/BIC) for Germany, Austria, Switzerland.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
gem 'banking_data'
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install banking_data
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
1. Fork it
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
30
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
32
|
+
5. Create new Pull Request
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
require File.expand_path('../lib/banking_data/version', __FILE__)
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.name = 'banking_data'
|
7
|
+
gem.version = BankingData::VERSION
|
8
|
+
gem.summary = %q{Banking data for German, Austrian and Swiss banks}
|
9
|
+
gem.description = %q{This gem exposes the official banking data of the respective national banks of Germany, Austria and Switzerland, including bank codes and SWIFT-codes/BICs.}
|
10
|
+
gem.license = 'MIT'
|
11
|
+
gem.authors = ['Frank C. Eckert']
|
12
|
+
gem.email = 'frank.eckert@boost-project.com'
|
13
|
+
gem.homepage = 'https://github.com/opahk/banking_data'
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ['lib']
|
19
|
+
|
20
|
+
gem.add_dependency 'activesupport'
|
21
|
+
gem.add_dependency 'activemodel'
|
22
|
+
gem.add_dependency 'smarter_csv'
|
23
|
+
gem.add_development_dependency 'rspec'
|
24
|
+
gem.add_development_dependency 'rake'
|
25
|
+
gem.add_development_dependency 'coveralls'
|
26
|
+
gem.add_development_dependency 'pry'
|
27
|
+
gem.add_development_dependency 'rubocop'
|
28
|
+
end
|