sps_king 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19d0865ad6d2b22dd641a185a944fbd202ccac2cc0c35978aa17c96461f284a5
4
- data.tar.gz: 5fc3c5d5ab1bf1e0d0064f14b91dec22f586d68f87128615ff90ea7b42dfc6e1
3
+ metadata.gz: cd70e12d3810143618272131a6c71f938e0f3a38d12a3922b1096798bd56906d
4
+ data.tar.gz: d3f2d858ed88af261d8fa635a04a1625e30d0b8b572477c91b672665999a0b1b
5
5
  SHA512:
6
- metadata.gz: 6d8858f99dee20619395d99ec7c272cae8a361a90592993e57ae0b737bd21f7729d6233e970d517abf9d2178624e2be51a358770a9f211fca58ba513701232e2
7
- data.tar.gz: bb74468d090c2bf36f57dc8d527e8ae3abacb0e501e68182458ddd02bd30a3e2940af8c4eab2df51b9496b044b6f8bb9d7429bb6b27216386218830de3f21ab9
6
+ metadata.gz: 202f18b83b35c8ba940eb8bb0827b65933893bf5ca307399940f8990146bdd69970e24c3ab9938067ea7f0343884f3c8523c891a394700d3ba83af0611305829
7
+ data.tar.gz: 2bae9c411fcb2a036219ca61ca2c701a2f69a57431ec8a89375e6c5764e11e6390db65e2ecb60819bc44744050f55d108fb4a654151341cfe389f8e6514fbec0
@@ -11,21 +11,26 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  strategy:
14
+ fail-fast: false
14
15
  matrix:
15
- ruby-version: ['3.0']
16
+ ruby: ['3.0', '3.1', '3.2', '3.3']
16
17
  gemfile:
17
- - gemfiles/Gemfile-activemodel-6.0.x
18
18
  - gemfiles/Gemfile-activemodel-6.1.x
19
19
  - gemfiles/Gemfile-activemodel-7.0.x
20
20
  - gemfiles/Gemfile-activemodel-7.1.x
21
21
 
22
+ name: Ruby ${{ matrix.ruby }} / Gemfile {{ matrix.gemfile }}
23
+
22
24
  steps:
23
25
  - uses: actions/checkout@v3
24
- - name: Set up Ruby ${{ matrix.ruby-version }}
25
- uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
26
+
27
+ - name: Set up Ruby ${{ matrix.ruby }}
28
+ uses: ruby/setup-ruby@v1
26
29
  with:
27
- ruby-version: ${{ matrix.ruby-version }}
28
- - name: Install dependencies for ${{ matrix.gemfile}}
29
- run: bundle install --gemfile=${{ matrix.gemfile }}
30
+ ruby-version: ${{ matrix.ruby }}
31
+
32
+ - name: Install dependencies for ${{ matrix.gemfile }}
33
+ run: bundle install --gemfile=${{ matrix.gemfile }}
34
+
30
35
  - name: Run tests
31
36
  run: bundle exec rspec
@@ -43,7 +43,7 @@ module SPS
43
43
  self.requested_date ||= DEFAULT_REQUESTED_DATE
44
44
  self.reference ||= 'NOTPROVIDED'
45
45
  self.batch_booking = true if self.batch_booking.nil?
46
- self.currency ||= 'EUR'
46
+ self.currency ||= 'CHF'
47
47
  end
48
48
 
49
49
  protected
@@ -1,3 +1,3 @@
1
1
  module SPS
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Schoknecht
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-06 00:00:00.000000000 Z
11
+ date: 2024-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -124,7 +124,6 @@ files:
124
124
  - LICENSE.txt
125
125
  - README.md
126
126
  - Rakefile
127
- - gemfiles/Gemfile-activemodel-6.0.x
128
127
  - gemfiles/Gemfile-activemodel-6.1.x
129
128
  - gemfiles/Gemfile-activemodel-7.0.x
130
129
  - gemfiles/Gemfile-activemodel-7.1.x
@@ -189,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
188
  - !ruby/object:Gem::Version
190
189
  version: '0'
191
190
  requirements: []
192
- rubygems_version: 3.5.3
191
+ rubygems_version: 3.5.11
193
192
  signing_key:
194
193
  specification_version: 4
195
194
  summary: Ruby gem for creating SPS XML files
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec path: '..'
4
-
5
- gem 'activemodel', '~> 6.0.0'