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 +4 -4
- data/.github/workflows/test.yml +12 -7
- data/lib/sps_king/transaction.rb +1 -1
- data/lib/sps_king/version.rb +1 -1
- metadata +3 -4
- data/gemfiles/Gemfile-activemodel-6.0.x +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd70e12d3810143618272131a6c71f938e0f3a38d12a3922b1096798bd56906d
|
|
4
|
+
data.tar.gz: d3f2d858ed88af261d8fa635a04a1625e30d0b8b572477c91b672665999a0b1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 202f18b83b35c8ba940eb8bb0827b65933893bf5ca307399940f8990146bdd69970e24c3ab9938067ea7f0343884f3c8523c891a394700d3ba83af0611305829
|
|
7
|
+
data.tar.gz: 2bae9c411fcb2a036219ca61ca2c701a2f69a57431ec8a89375e6c5764e11e6390db65e2ecb60819bc44744050f55d108fb4a654151341cfe389f8e6514fbec0
|
data/.github/workflows/test.yml
CHANGED
|
@@ -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
|
|
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
|
-
|
|
25
|
-
|
|
26
|
+
|
|
27
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
28
|
+
uses: ruby/setup-ruby@v1
|
|
26
29
|
with:
|
|
27
|
-
ruby-version: ${{ matrix.ruby
|
|
28
|
-
|
|
29
|
-
|
|
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
|
data/lib/sps_king/transaction.rb
CHANGED
data/lib/sps_king/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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
|