sps_king 0.1.0 → 0.1.1

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
- SHA1:
3
- metadata.gz: 6cd77b54487aa19572d341aacb94135014482406
4
- data.tar.gz: c2b795d7d60742a76ef3bc1b335ea0901ecee526
2
+ SHA256:
3
+ metadata.gz: 56a85b25dae0a29c3fd5deedec0e694f191febb00a3aa47c05942e898171dbcb
4
+ data.tar.gz: bf9eca9e69a4683e49864c767478c813a7117a5b33bc3fe91c83ee3b8c401153
5
5
  SHA512:
6
- metadata.gz: b1153883b2c58b05b2cc890c5c90bdaeab9d8296a1c0e2ef02766421028d3ff40ff673ea65f6e4b99a3c8e5785ecc7f1ccae508b4102931191ff4dd90583e827
7
- data.tar.gz: 9b9546cb0777778b9ff24b7c4405a60cf62a1b899ccfd91b5fb6c8068f6ca4b927288263073b82d204ee6f9403d1eae55f69b8fed74eb8bfbba955fa232a97f5
6
+ metadata.gz: d32abcc154eb68b790a9c9444f71b559c99a24c3c970ba598193d0fe607b084c2611e029cd5502f0fb6e3a4601d96aa8204ec17d845403a4a961000af19b31a6
7
+ data.tar.gz: 3440a70f437c1586990f9cc95ee3c4a8491ff3c3fdcb936675a3496807967cbafef40c6707edb2221678d88cd79c4a6e1d4cb2844a178a19e166690a69634916
data/.gitignore CHANGED
@@ -7,3 +7,4 @@ pkg/*
7
7
  Gemfile.lock
8
8
  # tmp disable
9
9
  docs/
10
+ *.gem
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2018 Tobias Schoknecht
1
+ Copyright (c) 2018-2020 viafintech GmbH
2
2
 
3
3
  Copyright (c) 2013-2017 Georg Leciejewski (Sales King GmbH) & Georg Ledermann for portions of this project copied from sepa_king
4
4
 
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
- It is a forked of [sepa_king](https://github.com/salesking/sepa_king) and therefore heavily inspired by the structure and the API.
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
 
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'activemodel', '~> 6.0.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'activemodel', '~> 6.1.0'
@@ -1,3 +1,3 @@
1
1
  module SPS
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
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@barzahlen.de']
11
- s.description = 'Implemention of pain.001.001.03.ch.02 and pain.pain.008.001.02.ch.03 (ISO 20022)'
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.0
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: 2018-11-21 00:00:00.000000000 Z
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.pain.008.001.02.ch.03
126
- (ISO 20022)
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@barzahlen.de
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
- rubyforge_project:
211
- rubygems_version: 2.4.8
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: