ebics 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +18 -0
- data/Rakefile +2 -0
- data/ebics.gemspec +52 -0
- data/lib/ebics.rb +5 -0
- data/lib/ebics/version.rb +3 -0
- metadata +194 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1bf1f9c8436ef9c7cabb0f435f1bd1edc966657e
|
4
|
+
data.tar.gz: dc05d47d94b00dea31717d9333a820d578df03b7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d041e1438278905c9b30c4451ca9b7fc3b9ba7e50044aeec12ce8991e79c5569b309cf035e36a1aa39570295c2f01eb8c9ab2e6ab246bb29f25cfd5030c0920f
|
7
|
+
data.tar.gz: e2845276b61b1c1d9dd8b093e053f9649c8e706f07836a28356ef1444ccddc91824302fa176d07c2bfda1fb01a892c9e257fc2ceac74f1489203f0627f81c8f0
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Lars Brillert
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# EBICS
|
2
|
+
|
3
|
+
EBICS is a ruby implementation of the [EBICS](http://www.ebics.org/) (Electronic Banking Internet Communication Standard)
|
4
|
+
|
5
|
+
The client support the complete initialization process comprising INI, HIA and HPB including the INI letter generation. It offers support for the most common download and upload order types (STA HAA HTD HPD PKT HAC HKD C52 C53 CD1 CDD CCT)
|
6
|
+
|
7
|
+
## Contributing
|
8
|
+
|
9
|
+
0. Contact team@railslove.com for information about the CLA
|
10
|
+
1. Fork it ( https://github.com/[my-github-username]/epics/fork )
|
11
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
12
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
13
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
14
|
+
5. Create a new Pull Request
|
15
|
+
|
16
|
+
|
17
|
+
------------
|
18
|
+
2014 - built with love by [Railslove](http://railslove.com) and released under the [GNU LESSER GENERAL PUBLIC LICENSE](https://github.com/railslove/epics/blob/master/LICENSE.txt). We have built quite a number of FinTech products. If you need support we are happy to help. Please contact us at team@railslove.com.
|
data/Rakefile
ADDED
data/ebics.gemspec
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'ebics/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "ebics"
|
8
|
+
spec.version = Ebics::VERSION
|
9
|
+
|
10
|
+
spec.authors = ["Lars Brillert"]
|
11
|
+
spec.email = ["lars@railslove.com"]
|
12
|
+
|
13
|
+
spec.summary = %q{a ruby implementation of the EBICS protocol}
|
14
|
+
spec.description = <<-description
|
15
|
+
ebics is a ruby implementation of the EBIC standard (H004)
|
16
|
+
|
17
|
+
It supports the complete initialization process comprising INI, HIA and HPB
|
18
|
+
including the INI letter generation.
|
19
|
+
|
20
|
+
Furthermore it offers support for the most common download types:
|
21
|
+
STA HAA HTD HPD PKT HAC HKD C52 C53
|
22
|
+
|
23
|
+
And the following upload orders:
|
24
|
+
CD1 CDD CCT
|
25
|
+
description
|
26
|
+
|
27
|
+
spec.homepage = "https://github.com/railslove/ebics-love"
|
28
|
+
spec.license = "LGPL-3.0"
|
29
|
+
|
30
|
+
spec.files = `git ls-files -z`.split("\x0")
|
31
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
32
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
33
|
+
spec.require_paths = ["lib"]
|
34
|
+
|
35
|
+
spec.post_install_message = "\n\e[32m" + ("*" * 60) + "\n\e[0m"
|
36
|
+
spec.post_install_message += "Thanks for using ebics - your epic EBICS client!\n"
|
37
|
+
spec.post_install_message += "ebics provides a full production-tested implementation of the Electronic Banking Internet Communication Standard.\n"
|
38
|
+
spec.post_install_message += "Railslove as the maintainer is commited to provide extensive developer tools to make integrating financial institutions fun and easy.\n"
|
39
|
+
spec.post_install_message += "Please create an issue on github (railslove/ebics) if anything does not work as expected. And contact team@railslove.com if you are looking for support with your integration.\n"
|
40
|
+
spec.post_install_message += "\e[32m" + ("*" * 60) + "\n\e[0m"
|
41
|
+
|
42
|
+
spec.add_dependency "nokogiri"
|
43
|
+
spec.add_dependency "gyoku"
|
44
|
+
spec.add_dependency "faraday"
|
45
|
+
|
46
|
+
spec.add_development_dependency "bundler", ">= 1.6.2"
|
47
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
48
|
+
spec.add_development_dependency "rspec"
|
49
|
+
spec.add_development_dependency "pry"
|
50
|
+
spec.add_development_dependency "webmock"
|
51
|
+
spec.add_development_dependency "equivalent-xml"
|
52
|
+
end
|
data/lib/ebics.rb
ADDED
metadata
ADDED
@@ -0,0 +1,194 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ebics
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lars Brillert
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: nokogiri
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: gyoku
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: faraday
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.6.2
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.6.2
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '10.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '10.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: pry
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: webmock
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: equivalent-xml
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
description: |2
|
140
|
+
ebics is a ruby implementation of the EBIC standard (H004)
|
141
|
+
|
142
|
+
It supports the complete initialization process comprising INI, HIA and HPB
|
143
|
+
including the INI letter generation.
|
144
|
+
|
145
|
+
Furthermore it offers support for the most common download types:
|
146
|
+
STA HAA HTD HPD PKT HAC HKD C52 C53
|
147
|
+
|
148
|
+
And the following upload orders:
|
149
|
+
CD1 CDD CCT
|
150
|
+
email:
|
151
|
+
- lars@railslove.com
|
152
|
+
executables: []
|
153
|
+
extensions: []
|
154
|
+
extra_rdoc_files: []
|
155
|
+
files:
|
156
|
+
- ".gitignore"
|
157
|
+
- Gemfile
|
158
|
+
- LICENSE.txt
|
159
|
+
- README.md
|
160
|
+
- Rakefile
|
161
|
+
- ebics.gemspec
|
162
|
+
- lib/ebics.rb
|
163
|
+
- lib/ebics/version.rb
|
164
|
+
homepage: https://github.com/railslove/ebics-love
|
165
|
+
licenses:
|
166
|
+
- LGPL-3.0
|
167
|
+
metadata: {}
|
168
|
+
post_install_message: "\n\e[32m************************************************************\n\e[0mThanks
|
169
|
+
for using ebics - your epic EBICS client!\nebics provides a full production-tested
|
170
|
+
implementation of the Electronic Banking Internet Communication Standard.\nRailslove
|
171
|
+
as the maintainer is commited to provide extensive developer tools to make integrating
|
172
|
+
financial institutions fun and easy.\nPlease create an issue on github (railslove/ebics)
|
173
|
+
if anything does not work as expected. And contact team@railslove.com if you are
|
174
|
+
looking for support with your integration.\n\e[32m************************************************************\n\e[0m"
|
175
|
+
rdoc_options: []
|
176
|
+
require_paths:
|
177
|
+
- lib
|
178
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
requirements: []
|
189
|
+
rubyforge_project:
|
190
|
+
rubygems_version: 2.4.3
|
191
|
+
signing_key:
|
192
|
+
specification_version: 4
|
193
|
+
summary: a ruby implementation of the EBICS protocol
|
194
|
+
test_files: []
|