attr_json 2.3.1 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a2727136aa434d698d6c54612f529c3765c2603012725161850be4cfd7f317f
4
- data.tar.gz: 0da797831a4a0a7c904c15b31bdb37dff2afaec49ae35caec993f85cfd23a31e
3
+ metadata.gz: 158f20e87ae0be8aae9c5421c587380d5c9404c1df7271634fd20c607f10c823
4
+ data.tar.gz: 470d5fc5cdd5f8a2c797765f0a3cefe1c138026c8684ea9fb20c1883ed1566ca
5
5
  SHA512:
6
- metadata.gz: a7e88ae65b9a417c00cee127fa8a90c46566698bd3835a74d5de941bbc9a64e0fdce9af72c1dd6adbb3fda29e02bc0817fccfc6b419b75088f1666e8a7c8ddc8
7
- data.tar.gz: 9bad39be885c3e8ce0065259713c17aebb96cb498098d25540ef3cc8239b56fc41a616f34353d4d21f1eea103d6ff87a084a36ce8812769389daf4598acc0c1a
6
+ metadata.gz: 3e33cf6fb2b71be270c938395b6c453a8311519f0a875372534677c2f7bc9a2a15311dec666ab7d93b4a7fe0f4da36996cded7862fd9cf1b01a89100ce3bfaf6
7
+ data.tar.gz: d4eed5840a55e7d98158e1bd3b70b9f082b114f6dc389d532547d93d776684602ba896c297abc0f124d10a24821ad4eb13ef0036c1d9ac0771b198d30b868a2e
@@ -65,10 +65,13 @@ jobs:
65
65
  - gemfile: rails_7_1
66
66
  ruby: 3.3
67
67
 
68
+ - gemfile: rails_7_2
69
+ ruby: 3.3
70
+
68
71
  name: ${{ matrix.gemfile }}, ruby ${{ matrix.ruby }}
69
72
 
70
73
  steps:
71
- - uses: actions/checkout@v3
74
+ - uses: actions/checkout@v4
72
75
 
73
76
  - name: Set up Ruby
74
77
  uses: ruby/setup-ruby@v1
data/Appraisals CHANGED
@@ -37,6 +37,14 @@ appraise "rails-7-1" do
37
37
  gem "pg", "~> 1.0"
38
38
  end
39
39
 
40
+ appraise "rails-7-2" do
41
+ gem 'combustion', "~> 1.0"
42
+
43
+ gem "rails", "~> 7.2.0"
44
+ gem "pg", "~> 1.0"
45
+ end
46
+
47
+
40
48
  appraise "rails-edge" do
41
49
  # need combustion edge to work with rails edge, will no longer
42
50
  # be true on next combustion release, probably no later than Rails 7.1
data/CHANGELOG.md CHANGED
@@ -31,7 +31,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
31
 
32
32
  *
33
33
 
34
- ## [2.3.1](https://github.com/jrochkind/attr_json/compare/v2.3.0...2.3.1)
34
+ ## [2.3.1](https://github.com/jrochkind/attr_json/compare/v2.3.1...v2.4.0)
35
+
36
+ ### Added
37
+
38
+ * Allow Rails 7.2 in gemspec (no code changes required to support) https://github.com/jrochkind/attr_json/pull/228
39
+
40
+
41
+ ## [2.3.1](https://github.com/jrochkind/attr_json/compare/v2.3.0...v2.3.1)
35
42
 
36
43
  ### Fixed
37
44
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # AttrJson
2
- [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions?query=workflow%3ACI+branch%3Amaster)
3
- [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI%20on%20Future%20Rails%20Versions/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions?query=workflow%3A%22CI+on+Future+Rails+Versions%22+branch%3Amaster)
2
+ [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions/workflows/ci.yml?query=workflow%3ACI+branch%3Amaster)
3
+ [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI%20on%20Future%20Rails%20Versions/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions/workflows/future_rails_ci.yml?query=workflow%3ACI+branch%3Amaster)
4
4
  [![Gem Version](https://badge.fury.io/rb/attr_json.svg)](https://badge.fury.io/rb/attr_json)
5
5
 
6
6
  ActiveRecord attributes stored serialized in a json column, super smooth. For Rails 6.0.x through 7.0.x. Ruby 2.7+.
data/attr_json.gemspec CHANGED
@@ -47,7 +47,7 @@ attributes use as much of the existing ActiveRecord architecture as we can.}
47
47
  # dependency included just as it is here, should never be released
48
48
  # from an env tht has any of these variables set.
49
49
  unless ENV['APPRAISAL_INITIALIZED'] || ENV["TRAVIS"] || ENV['CI']
50
- spec.add_runtime_dependency "activerecord", ">= 6.0.0", "< 7.2"
50
+ spec.add_runtime_dependency "activerecord", ">= 6.0.0", "< 7.3"
51
51
  end
52
52
 
53
53
  spec.add_development_dependency "bundler"
@@ -0,0 +1,18 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "combustion", "~> 1.0"
6
+ gem "rails", "~> 7.2.0"
7
+ gem "pg", "~> 1.0"
8
+ gem "rspec-rails", "~> 6.0"
9
+ gem "simple_form", ">= 4.0"
10
+ gem "cocoon", ">= 1.2"
11
+ gem "jquery-rails"
12
+ gem "coffee-rails"
13
+ gem "sprockets-rails"
14
+ gem "capybara", "~> 3.0"
15
+ gem "selenium-webdriver"
16
+ gem "byebug"
17
+
18
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module AttrJson
2
- VERSION = "2.3.1"
2
+ VERSION = "2.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attr_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Rochkind
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-30 00:00:00.000000000 Z
11
+ date: 2024-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 6.0.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '7.2'
22
+ version: '7.3'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 6.0.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '7.2'
32
+ version: '7.3'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -165,6 +165,7 @@ files:
165
165
  - gemfiles/rails_6_1.gemfile
166
166
  - gemfiles/rails_7_0.gemfile
167
167
  - gemfiles/rails_7_1.gemfile
168
+ - gemfiles/rails_7_2.gemfile
168
169
  - gemfiles/rails_edge.gemfile
169
170
  - lib/attr_json.rb
170
171
  - lib/attr_json/attribute_definition.rb
@@ -208,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
209
  - !ruby/object:Gem::Version
209
210
  version: '0'
210
211
  requirements: []
211
- rubygems_version: 3.4.19
212
+ rubygems_version: 3.2.33
212
213
  signing_key:
213
214
  specification_version: 4
214
215
  summary: ActiveRecord attributes stored serialized in a json column, super smooth.