inheritance_integer_type 0.2.0 → 0.2.2

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: 5eed88208785bd41ac4e3b7959526aaa500c744d1d00e0914df67fc3d4595e37
4
- data.tar.gz: b5309eae3ff8d8b826497ec05390a12b709d3b00fb9e3a6a28be89954b981101
3
+ metadata.gz: 47cee0d701498b9398d13cd63f8c077b24ad653ee3d4073d4ebb1e3eeee18478
4
+ data.tar.gz: 777293e89fc3f7e0ce962944beb803f601975d12620fa5a1cfe11409c6460fb6
5
5
  SHA512:
6
- metadata.gz: 1bbd3b8a7f178423902628e11598c65352350c0f8c509e484597c003cee66b2decfa8cdb8fba5a0e322330211d71b3069ff99ba455df0edda2778389a28cb3b0
7
- data.tar.gz: afba16f3559dc14dd7cae13c8bbdea82a12f9bd0860a6517d0e0971cb0dcf898a3cd3cbdb8530145254c683922c689c7b15791bb54ba58da4d98fe3c5d8daa8e
6
+ metadata.gz: e57a289089caad0701813ae0170e60a40bb469e5c23f522408a2e45544313e0a0d3b5c1d13c0d878c6692b1c9c73f00b4f758e03a40a88592ee398722bcce883
7
+ data.tar.gz: e121c3d9ae88ce1f0fe98f4d4e227b2e4d0a0aabb94d6ad951a4a14e1d313043c9e95d15da95d26f8824e4bdfac540a9d9745154a53acd1a8f8b4498cd03f13e
@@ -15,28 +15,10 @@ 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"
21
+ - "3.3"
40
22
  steps:
41
23
  - uses: actions/checkout@v4
42
24
  - uses: ruby/setup-ruby@v1
@@ -44,4 +26,6 @@ jobs:
44
26
  ruby-version: "${{ matrix.ruby-version }}"
45
27
  bundler-cache: true
46
28
  - name: Run tests
47
- run: bundle exec rspec --format documentation
29
+ run: |
30
+ bundle exec appraisal install
31
+ bundle exec appraisal rspec --format documentation
@@ -13,10 +13,10 @@ jobs:
13
13
 
14
14
  steps:
15
15
  - uses: actions/checkout@v3
16
- - name: Set up Ruby 3.1
16
+ - name: Set up Ruby 3.3
17
17
  uses: ruby/setup-ruby@v1
18
18
  with:
19
- ruby-version: 3.1
19
+ ruby-version: 3.3
20
20
 
21
21
  - name: Publish to RubyGems
22
22
  env:
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/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.4
1
+ 3.3.8
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
@@ -15,3 +15,7 @@ else
15
15
  end
16
16
 
17
17
  gem "activerecord", ar
18
+
19
+ group :development, :test do
20
+ gem "appraisal", "2.5.0"
21
+ end
data/dev.yml CHANGED
@@ -2,10 +2,12 @@
2
2
  version: "2.0"
3
3
 
4
4
  setup:
5
- ruby: 3.1.4
6
- bundler: 2.4.21
5
+ ruby: 3.3.8
6
+ bundler: 2.6.9
7
7
 
8
8
  commands:
9
9
  test:
10
10
  summary: Run the project's specs
11
- command: bundle exec rspec spec/
11
+ command: |
12
+ bundle exec appraisal install
13
+ bundle exec appraisal rspec spec/
@@ -1,3 +1,3 @@
1
1
  module InheritanceIntegerType
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.2"
3
3
  end
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.0
4
+ version: 0.2.2
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: 2024-06-12 00:00:00.000000000 Z
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
@@ -149,8 +150,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
150
  - !ruby/object:Gem::Version
150
151
  version: '0'
151
152
  requirements: []
152
- rubygems_version: 3.3.27
153
- signing_key:
153
+ rubygems_version: 3.5.22
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: