File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
1414 strategy :
1515 matrix :
1616 ruby :
17- - " 2.6 "
18- - " 2.7 "
19- - " 3.0 "
20- - " 3.1 "
17+ - " 3.2 "
18+ - " 3.3 "
19+ - " 3.4 "
20+ - " 4.0 "
2121
2222 steps :
2323 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- safe_polymorphic (0.1.3 )
5- activerecord (>= 5.2 , < 8.0 )
4+ safe_polymorphic (0.1.4 )
5+ activerecord (>= 7.0 , < 8.3 )
66
77GEM
88 remote: https://rubygems.org/
99 specs:
10- activemodel (6.1.4.1 )
11- activesupport (= 6.1.4.1 )
12- activerecord (6.1.4.1 )
13- activemodel (= 6.1.4.1 )
14- activesupport (= 6.1.4.1 )
15- activesupport (6.1.4.1 )
10+ activemodel (7.1.6 )
11+ activesupport (= 7.1.6 )
12+ activerecord (7.1.6 )
13+ activemodel (= 7.1.6 )
14+ activesupport (= 7.1.6 )
15+ timeout (>= 0.4.0 )
16+ activesupport (7.1.6 )
17+ base64
18+ benchmark (>= 0.3 )
19+ bigdecimal
1620 concurrent-ruby (~> 1.0 , >= 1.0.2 )
21+ connection_pool (>= 2.2.5 )
22+ drb
1723 i18n (>= 1.6 , < 2 )
24+ logger (>= 1.4.2 )
1825 minitest (>= 5.1 )
26+ mutex_m
27+ securerandom (>= 0.3 )
1928 tzinfo (~> 2.0 )
20- zeitwerk (~> 2.3 )
2129 addressable (2.8.9 )
2230 public_suffix (>= 2.0.2 , < 8.0 )
2331 ast (2.4.3 )
32+ base64 (0.3.0 )
33+ benchmark (0.5.0 )
2434 bigdecimal (4.0.1 )
2535 concurrent-ruby (1.1.10 )
36+ connection_pool (3.0.2 )
2637 database_cleaner-active_record (2.2.2 )
2738 activerecord (>= 5.a )
2839 database_cleaner-core (~> 2.0 )
2940 database_cleaner-core (2.0.1 )
3041 diff-lcs (1.6.2 )
3142 docile (1.4.1 )
43+ drb (2.2.3 )
3244 i18n (1.12.0 )
3345 concurrent-ruby (~> 1.0 )
3446 json (2.19.1 )
3749 bigdecimal (>= 3.1 , < 5 )
3850 language_server-protocol (3.17.0.5 )
3951 lint_roller (1.1.0 )
52+ logger (1.7.0 )
4053 mcp (0.8.0 )
4154 json-schema (>= 4.1 )
4255 minitest (5.16.3 )
56+ mutex_m (0.3.0 )
4357 parallel (1.27.0 )
4458 parser (3.3.10.2 )
4559 ast (~> 2.4.1 )
7993 parser (>= 3.3.7.2 )
8094 prism (~> 1.7 )
8195 ruby-progressbar (1.13.0 )
96+ securerandom (0.4.1 )
8297 simplecov (0.22.0 )
8398 docile (~> 1.1 )
8499 simplecov-html (~> 0.11 )
87102 simplecov_json_formatter (0.1.4 )
88103 sqlite3 (2.9.1-arm64-darwin )
89104 sqlite3 (2.9.1-x86_64-linux-gnu )
105+ timeout (0.6.1 )
90106 tzinfo (2.0.5 )
91107 concurrent-ruby (~> 1.0 )
92108 unicode-display_width (3.2.0 )
93109 unicode-emoji (~> 4.1 )
94110 unicode-emoji (4.2.0 )
95- zeitwerk (2.6.0 )
96111
97112PLATFORMS
98113 arm64-darwin-21
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module SafePolymorphic
4- VERSION = '0.1.3 '
4+ VERSION = '0.1.4 '
55end
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313 spec . description = 'ActiveRecord extension which allows us to safely use polymorphic associations, by validating' \
1414 'which classes are allowed to be related to, while also adding scopes and helper methods.'
1515 spec . homepage = 'https://github.com/gogrow-dev/safe_polymorphic'
16- spec . required_ruby_version = '>= 2.6 .0'
16+ spec . required_ruby_version = '>= 3.2 .0'
1717
1818 spec . metadata [ 'homepage_uri' ] = spec . homepage
1919 spec . metadata [ 'source_code_uri' ] = spec . homepage
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
3131 spec . executables = spec . files . grep ( %r{\A exe/} ) { |f | File . basename ( f ) }
3232 spec . require_paths = [ 'lib' ]
3333
34- spec . add_dependency 'activerecord' , '>= 5.2 ' , '< 8.0 '
34+ spec . add_dependency 'activerecord' , '>= 7.0 ' , '< 8.3 '
3535end
You can’t perform that action at this time.
0 commit comments