-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added IBAN/BIC validation, kontoapi-ruby >= 0.2.0 from here
- Loading branch information
1 parent
f29d436
commit 54440d6
Showing
7 changed files
with
71 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.3 | ||
0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = "kontoapi-rails" | ||
s.version = "0.0.3" | ||
s.version = "0.2.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Jan Schwenzien"] | ||
s.date = "2012-04-05" | ||
s.description = "This library is a wrapper for the Konto API (https://www.kontoapi.de/). It provides a validation method for models that checks if a given account number and bank code represent a valid combination." | ||
s.date = "2012-04-08" | ||
s.description = "This library is a wrapper for the Konto API (https://www.kontoapi.de/). It provides a validation method for models that checks if a given account number and bank code represent a valid combination, autocompletes bank names and validates IBAN and BIC codes." | ||
s.email = "[email protected]" | ||
s.extra_rdoc_files = [ | ||
"LICENSE", | ||
|
@@ -51,22 +51,22 @@ Gem::Specification.new do |s| | |
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<rails>, [">= 3.0.0"]) | ||
s.add_runtime_dependency(%q<kontoapi-ruby>, [">= 0"]) | ||
s.add_runtime_dependency(%q<kontoapi-ruby>, [">= 0.2.0"]) | ||
s.add_development_dependency(%q<rspec>, ["~> 2.3.0"]) | ||
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"]) | ||
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"]) | ||
s.add_development_dependency(%q<rcov>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<rails>, [">= 3.0.0"]) | ||
s.add_dependency(%q<kontoapi-ruby>, [">= 0"]) | ||
s.add_dependency(%q<kontoapi-ruby>, [">= 0.2.0"]) | ||
s.add_dependency(%q<rspec>, ["~> 2.3.0"]) | ||
s.add_dependency(%q<bundler>, ["~> 1.0.0"]) | ||
s.add_dependency(%q<jeweler>, ["~> 1.5.2"]) | ||
s.add_dependency(%q<rcov>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<rails>, [">= 3.0.0"]) | ||
s.add_dependency(%q<kontoapi-ruby>, [">= 0"]) | ||
s.add_dependency(%q<kontoapi-ruby>, [">= 0.2.0"]) | ||
s.add_dependency(%q<rspec>, ["~> 2.3.0"]) | ||
s.add_dependency(%q<bundler>, ["~> 1.0.0"]) | ||
s.add_dependency(%q<jeweler>, ["~> 1.5.2"]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters