sps_king 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +1 -0
- data/.travis.yml +3 -19
- data/LICENSE.txt +1 -1
- data/README.md +2 -2
- data/gemfiles/Gemfile-activemodel-6.0.x +5 -0
- data/gemfiles/Gemfile-activemodel-6.1.x +5 -0
- data/lib/sps_king/version.rb +1 -1
- data/spec/spec_helper.rb +1 -3
- data/sps_king.gemspec +2 -3
- metadata +11 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 56a85b25dae0a29c3fd5deedec0e694f191febb00a3aa47c05942e898171dbcb
|
|
4
|
+
data.tar.gz: bf9eca9e69a4683e49864c767478c813a7117a5b33bc3fe91c83ee3b8c401153
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d32abcc154eb68b790a9c9444f71b559c99a24c3c970ba598193d0fe607b084c2611e029cd5502f0fb6e3a4601d96aa8204ec17d845403a4a961000af19b31a6
|
|
7
|
+
data.tar.gz: 3440a70f437c1586990f9cc95ee3c4a8491ff3c3fdcb936675a3496807967cbafef40c6707edb2221678d88cd79c4a6e1d4cb2844a178a19e166690a69634916
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
|
@@ -1,32 +1,16 @@
|
|
|
1
1
|
rvm:
|
|
2
|
-
- 2.1.1
|
|
3
|
-
- 2.2.10
|
|
4
|
-
- 2.3.7
|
|
5
2
|
- 2.4.4
|
|
6
3
|
- 2.5.1
|
|
4
|
+
- 2.6.3
|
|
7
5
|
gemfile:
|
|
8
|
-
- gemfiles/Gemfile-activemodel-3.1.x
|
|
9
|
-
- gemfiles/Gemfile-activemodel-3.2.x
|
|
10
|
-
- gemfiles/Gemfile-activemodel-4.0.x
|
|
11
|
-
- gemfiles/Gemfile-activemodel-4.1.x
|
|
12
6
|
- gemfiles/Gemfile-activemodel-4.2.x
|
|
13
7
|
- gemfiles/Gemfile-activemodel-5.0.x
|
|
14
8
|
- gemfiles/Gemfile-activemodel-5.1.x
|
|
15
9
|
- gemfiles/Gemfile-activemodel-5.2.x
|
|
10
|
+
- gemfiles/Gemfile-activemodel-6.0.x
|
|
11
|
+
- gemfiles/Gemfile-activemodel-6.1.x
|
|
16
12
|
matrix:
|
|
17
13
|
exclude:
|
|
18
|
-
- rvm: 2.1.1
|
|
19
|
-
gemfile: gemfiles/Gemfile-activemodel-5.0.x
|
|
20
|
-
- rvm: 2.1.1
|
|
21
|
-
gemfile: gemfiles/Gemfile-activemodel-5.1.x
|
|
22
|
-
- rvm: 2.1.1
|
|
23
|
-
gemfile: gemfiles/Gemfile-activemodel-5.2.x
|
|
24
14
|
- rvm: 2.4.4
|
|
25
|
-
gemfile: gemfiles/Gemfile-activemodel-4.1.x
|
|
26
|
-
- rvm: 2.4.4
|
|
27
|
-
gemfile: gemfiles/Gemfile-activemodel-4.2.x
|
|
28
|
-
- rvm: 2.5.1
|
|
29
|
-
gemfile: gemfiles/Gemfile-activemodel-4.1.x
|
|
30
|
-
- rvm: 2.5.1
|
|
31
15
|
gemfile: gemfiles/Gemfile-activemodel-4.2.x
|
|
32
16
|
sudo: false
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
sps_king is a Ruby gem which implements **pain** (**Pa**yment **In**itiation) file building for the Swiss Payment Standard, which is a subset of the ISO 20022 standard.
|
|
7
7
|
This is currently implemented in v1.8 for Swiss Credit Transfers (`pain.001.001.03.ch.02`) and v1.2 for Swiss Direct Debits (`pain.008.001.02.ch.03`).
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
If you are looking for SEPA **pain** file building, take a look at [sepa_king](https://github.com/salesking/sepa_king).
|
|
10
|
+
This gem is forked of `sepa_king` and therefore heavily inspired by the structure and the API.
|
|
11
11
|
|
|
12
12
|
## Requirements
|
|
13
13
|
|
data/lib/sps_king/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -4,11 +4,9 @@
|
|
|
4
4
|
# loaded once.
|
|
5
5
|
|
|
6
6
|
require 'simplecov'
|
|
7
|
-
require 'coveralls'
|
|
8
7
|
|
|
9
8
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
|
|
10
|
-
SimpleCov::Formatter::HTMLFormatter
|
|
11
|
-
Coveralls::SimpleCov::Formatter
|
|
9
|
+
SimpleCov::Formatter::HTMLFormatter
|
|
12
10
|
])
|
|
13
11
|
SimpleCov.start do
|
|
14
12
|
add_filter '/spec/'
|
data/sps_king.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.name = 'sps_king'
|
|
8
8
|
s.version = SPS::VERSION
|
|
9
9
|
s.authors = ['Tobias Schoknecht']
|
|
10
|
-
s.email = ['tobias.schoknecht@
|
|
11
|
-
s.description = 'Implemention of pain.001.001.03.ch.02 and pain.
|
|
10
|
+
s.email = ['tobias.schoknecht@viafintech.com']
|
|
11
|
+
s.description = 'Implemention of pain.001.001.03.ch.02 and pain.008.001.02.ch.03 (ISO 20022)'
|
|
12
12
|
s.summary = 'Ruby gem for creating SPS XML files'
|
|
13
13
|
s.homepage = 'http://github.com/Barzahlen/sps_king'
|
|
14
14
|
s.license = 'MIT'
|
|
@@ -25,7 +25,6 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
|
|
26
26
|
s.add_development_dependency 'bundler'
|
|
27
27
|
s.add_development_dependency 'rspec'
|
|
28
|
-
s.add_development_dependency 'coveralls'
|
|
29
28
|
s.add_development_dependency 'simplecov'
|
|
30
29
|
s.add_development_dependency 'rake'
|
|
31
30
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sps_king
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tobias Schoknecht
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -80,20 +80,6 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: coveralls
|
|
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
83
|
- !ruby/object:Gem::Dependency
|
|
98
84
|
name: simplecov
|
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -122,10 +108,10 @@ dependencies:
|
|
|
122
108
|
- - ">="
|
|
123
109
|
- !ruby/object:Gem::Version
|
|
124
110
|
version: '0'
|
|
125
|
-
description: Implemention of pain.001.001.03.ch.02 and pain.
|
|
126
|
-
|
|
111
|
+
description: Implemention of pain.001.001.03.ch.02 and pain.008.001.02.ch.03 (ISO
|
|
112
|
+
20022)
|
|
127
113
|
email:
|
|
128
|
-
- tobias.schoknecht@
|
|
114
|
+
- tobias.schoknecht@viafintech.com
|
|
129
115
|
executables: []
|
|
130
116
|
extensions: []
|
|
131
117
|
extra_rdoc_files: []
|
|
@@ -146,6 +132,8 @@ files:
|
|
|
146
132
|
- gemfiles/Gemfile-activemodel-5.0.x
|
|
147
133
|
- gemfiles/Gemfile-activemodel-5.1.x
|
|
148
134
|
- gemfiles/Gemfile-activemodel-5.2.x
|
|
135
|
+
- gemfiles/Gemfile-activemodel-6.0.x
|
|
136
|
+
- gemfiles/Gemfile-activemodel-6.1.x
|
|
149
137
|
- lib/schema/pain.001.001.03.ch.02.xsd
|
|
150
138
|
- lib/schema/pain.008.001.02.ch.03.xsd
|
|
151
139
|
- lib/sps_king.rb
|
|
@@ -192,7 +180,7 @@ homepage: http://github.com/Barzahlen/sps_king
|
|
|
192
180
|
licenses:
|
|
193
181
|
- MIT
|
|
194
182
|
metadata: {}
|
|
195
|
-
post_install_message:
|
|
183
|
+
post_install_message:
|
|
196
184
|
rdoc_options: []
|
|
197
185
|
require_paths:
|
|
198
186
|
- lib
|
|
@@ -207,9 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
207
195
|
- !ruby/object:Gem::Version
|
|
208
196
|
version: '0'
|
|
209
197
|
requirements: []
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
signing_key:
|
|
198
|
+
rubygems_version: 3.0.6
|
|
199
|
+
signing_key:
|
|
213
200
|
specification_version: 4
|
|
214
201
|
summary: Ruby gem for creating SPS XML files
|
|
215
202
|
test_files:
|