activerecord_null_object 0.7.0 → 0.8.0

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: fa23b2c732398128415abe41a0dbf35a19785eb6fffce4f74c3bb373cdb3603e
4
- data.tar.gz: 0c9bcd94d123f8a44bbdc59b9a4e3bcd7cdaf1c33fe00fa0905016dfa3871d4d
3
+ metadata.gz: 2ecd35bf5b621b6b343dda8c7864098c8c70ff34b7f3330f8fdadbb8b79a2fe1
4
+ data.tar.gz: 5582025fed063729b9bf552560feebd5d4079baa8a1b184409888532a076d4da
5
5
  SHA512:
6
- metadata.gz: 8809130e00753e47902f77138e307c8c888c0dbfeb1657e7db6476326f85ac9bad7d96f6b5127521493cd97e003d2c4fc1e3f98d0bee48ec6e04d9a8f82d3992
7
- data.tar.gz: ba58c8209e343d814451246938fee6ba0fd28ab10eca53507e16826c09d650c6a7acd41f7019ea1429fbb60aa2271984b4e2c81db83680d18e1902d7bbe1b98d
6
+ metadata.gz: '097267ce8162f55d8fa60f5863301f87457f56e5a3bc19688c41920b63c870f93ff564b7ed15de898bf1aa70b3dd2b40c8e9b332eee1a290e75759f35804a071'
7
+ data.tar.gz: 47a6de8f7a56063751e3f8af8e06c98f0a39c45318da5b3f214e5a1dc1143857ffe93895dd3846dd099827ab4e98965a9bdc68dffd43aa3327e66960228ee296
@@ -0,0 +1,12 @@
1
+ # The commits that did automated reformatting. You can ignore them
2
+ # during git-blame with `--ignore-rev` or `--ignore-revs-file`.
3
+ # You can also globally configure GIT with the following command
4
+ #
5
+ # $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
6
+ #
7
+ # Example entries:
8
+ #
9
+ # <full commit hash> # initial black-format
10
+ # <full commit hash> # rename something internal
11
+
12
+ 3d2125a071c028c33bd9f02881c0c75684c8668c # Pretty CHANGELOG.md
@@ -6,7 +6,7 @@ jobs:
6
6
  fail-fast: false
7
7
  matrix:
8
8
  gemfile: [rails60, rails61, rails70]
9
- ruby: ["2.7", "3.0", "3.1"]
9
+ ruby: ["3.0", "3.1", "3.2"]
10
10
  runs-on: ubuntu-latest
11
11
  env:
12
12
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.2.0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.8.0
4
+
5
+ - [PLAT-1175] Update to Ruby 3.2
6
+
3
7
  ## 0.7.0
4
8
 
5
9
  - [PLAT-383] Improve boottime by lazy loading extension
@@ -14,5 +18,5 @@
14
18
 
15
19
  ## 0.4.0
16
20
 
17
- * Use coverage kit to enforce maximum coverage
18
- * [TT-6631] Fix present? and blank? checks on Rails6
21
+ - Use coverage kit to enforce maximum coverage
22
+ - [TT-6631] Fix present? and blank? checks on Rails6
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordNullObject
2
- VERSION = '0.7.0'
2
+ VERSION = '0.8.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord_null_object
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Woods
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-07-04 00:00:00.000000000 Z
12
+ date: 2023-01-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -156,6 +156,7 @@ executables: []
156
156
  extensions: []
157
157
  extra_rdoc_files: []
158
158
  files:
159
+ - ".git-blame-ignore-revs"
159
160
  - ".github/dependabot.yml"
160
161
  - ".github/workflows/release.yml"
161
162
  - ".github/workflows/ruby.yml"
@@ -200,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
200
201
  - !ruby/object:Gem::Version
201
202
  version: '0'
202
203
  requirements: []
203
- rubygems_version: 3.3.3
204
+ rubygems_version: 3.4.1
204
205
  signing_key:
205
206
  specification_version: 4
206
207
  summary: Implements the Null Object Pattern for nil values in ActiveRecord associations.