inheritance_integer_type 0.2.0 → 0.2.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/ci.yaml +6 -23
- data/.gitignore +3 -0
- data/Appraisals +14 -0
- data/Gemfile +4 -0
- data/dev.yml +1 -1
- data/lib/inheritance_integer_type/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 551dfc8dfbea0b8974b785270586f7d4cea95ebac1d036d3047424936a30c5cb
|
4
|
+
data.tar.gz: f91d49631848cc6d09e261ffb38bbbb4840cde45948b77783e77538222573213
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f831ed5b80b8304c062fcab070ff2f550a77a64a3d6390f3954b9ec514f5ed84528b7eafc0d503ad7d9ed2e1030cef372aed5149671c974489ec2e72a2ed3c8e
|
7
|
+
data.tar.gz: ce968892056689821bfcd3b4e7b7120daef0923968665d7b71b94b5c81ff4666ac8fbeb56e2f0501810bb39f3eefec37b3d939b325962ccc60736259f406ffbd
|
data/.github/workflows/ci.yaml
CHANGED
@@ -15,28 +15,9 @@ jobs:
|
|
15
15
|
fail-fast: false
|
16
16
|
matrix:
|
17
17
|
ruby-version:
|
18
|
-
- 3.0
|
19
|
-
- 3.1
|
20
|
-
- 3.2
|
21
|
-
active-record-version:
|
22
|
-
- 6.1.0
|
23
|
-
- 7.0.0
|
24
|
-
- 7.1.0
|
25
|
-
exclude:
|
26
|
-
- ruby-version: 3.2
|
27
|
-
active-record-version: 6.0.0
|
28
|
-
- ruby-version: 3.2
|
29
|
-
active-record-version: 6.1.0
|
30
|
-
- ruby-version: 3.2
|
31
|
-
active-record-version: 7.0.0
|
32
|
-
- ruby-version: 3.1
|
33
|
-
active-record-version: 6.0.0
|
34
|
-
- ruby-version: 3.1
|
35
|
-
active-record-version: 6.1.0
|
36
|
-
- ruby-version: 3.0
|
37
|
-
active-record-version: 6.0.0
|
38
|
-
env:
|
39
|
-
ACTIVE_RECORD_VERSION: "${{ matrix.active-record-version }}"
|
18
|
+
- "3.0"
|
19
|
+
- "3.1"
|
20
|
+
- "3.2"
|
40
21
|
steps:
|
41
22
|
- uses: actions/checkout@v4
|
42
23
|
- uses: ruby/setup-ruby@v1
|
@@ -44,4 +25,6 @@ jobs:
|
|
44
25
|
ruby-version: "${{ matrix.ruby-version }}"
|
45
26
|
bundler-cache: true
|
46
27
|
- name: Run tests
|
47
|
-
run:
|
28
|
+
run: |
|
29
|
+
bundle exec appraisal install
|
30
|
+
bundle exec appraisal rspec --format documentation
|
data/.gitignore
CHANGED
@@ -26,6 +26,9 @@ build/
|
|
26
26
|
|
27
27
|
Gemfile.lock
|
28
28
|
|
29
|
+
# Do not copy generated appraisal Gemfiles
|
30
|
+
gemfiles/*
|
31
|
+
|
29
32
|
# for a library or gem, you might want to ignore these files since the code is
|
30
33
|
# intended to run in multiple environments; otherwise, check them in:
|
31
34
|
# Gemfile.lock
|
data/Appraisals
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
appraise "activerecord-6.1" do
|
2
|
+
gem "activerecord", "~> 6.1.0"
|
3
|
+
gem "concurrent-ruby", "1.3.4"
|
4
|
+
end
|
5
|
+
|
6
|
+
appraise "activerecord-7.0" do
|
7
|
+
gem "activerecord", "~> 7.0.0"
|
8
|
+
gem "concurrent-ruby", "1.3.4"
|
9
|
+
end
|
10
|
+
|
11
|
+
appraise "activerecord-7.1" do
|
12
|
+
gem "activerecord", "~> 7.1.0"
|
13
|
+
gem "concurrent-ruby"
|
14
|
+
end
|
data/Gemfile
CHANGED
data/dev.yml
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inheritance_integer_type
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle d'Oliveira
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -106,6 +106,7 @@ files:
|
|
106
106
|
- ".github/workflows/gem-push.yaml"
|
107
107
|
- ".gitignore"
|
108
108
|
- ".ruby-version"
|
109
|
+
- Appraisals
|
109
110
|
- Gemfile
|
110
111
|
- LICENSE
|
111
112
|
- LICENSE.txt
|
@@ -134,7 +135,7 @@ homepage: ''
|
|
134
135
|
licenses:
|
135
136
|
- MIT
|
136
137
|
metadata: {}
|
137
|
-
post_install_message:
|
138
|
+
post_install_message:
|
138
139
|
rdoc_options: []
|
139
140
|
require_paths:
|
140
141
|
- lib
|
@@ -150,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
151
|
version: '0'
|
151
152
|
requirements: []
|
152
153
|
rubygems_version: 3.3.27
|
153
|
-
signing_key:
|
154
|
+
signing_key:
|
154
155
|
specification_version: 4
|
155
156
|
summary: Allow the type field in teh DB to be an integer rather than a string
|
156
157
|
test_files:
|