noid-rails 3.1.0 → 3.3.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 +4 -4
- data/.circleci/config.yml +19 -29
- data/lib/noid/rails/engine.rb +12 -0
- data/lib/noid/rails/version.rb +1 -1
- data/noid-rails.gemspec +2 -1
- metadata +10 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d2807a0a533a8c7d6917b811deec44b5661dcedaff64c8709cb235561a5c50d
|
4
|
+
data.tar.gz: 1ef486bd938a16660c2f5c8523efd671f51d0865b11591391803cab107a72714
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4c80c0411108258eaa6cc8875572335bc2a40bf006d5541b09418f69aa5ce9b4f2687b5086c449cdb0f971cfa77cb0c71bc1fa7a5996484ee2d38750f0845c5
|
7
|
+
data.tar.gz: 5df891e0007243dfc528741ee4083eb326a8af1ad4f2ea2e4b9f8071a131b82c3090f266b08adff1b9f5847c7ebe8f0c49af2535a7a52e07457970344ea15e79
|
data/.circleci/config.yml
CHANGED
@@ -55,38 +55,28 @@ workflows:
|
|
55
55
|
ci:
|
56
56
|
jobs:
|
57
57
|
- bundle_and_test:
|
58
|
-
name: ruby3-
|
59
|
-
ruby_version: 3.
|
60
|
-
rails_version:
|
61
|
-
|
62
|
-
- bundle_and_test:
|
63
|
-
name: ruby3-1_rails7-0
|
64
|
-
ruby_version: 3.1.3
|
65
|
-
rails_version: 7.0.4
|
66
|
-
|
58
|
+
name: ruby3-4_rails8-0
|
59
|
+
ruby_version: 3.4.4
|
60
|
+
rails_version: 8.0.0
|
67
61
|
- bundle_and_test:
|
68
|
-
name: ruby3-
|
69
|
-
ruby_version: 3.
|
70
|
-
rails_version:
|
62
|
+
name: ruby3-3_rails8-0
|
63
|
+
ruby_version: 3.3.8
|
64
|
+
rails_version: 8.0.0
|
65
|
+
|
71
66
|
- bundle_and_test:
|
72
|
-
name: ruby3-
|
73
|
-
ruby_version: 3.0
|
74
|
-
rails_version:
|
67
|
+
name: ruby3-3_rails7-2
|
68
|
+
ruby_version: 3.3.0
|
69
|
+
rails_version: 7.2.0
|
75
70
|
- bundle_and_test:
|
76
|
-
name: ruby3-
|
77
|
-
ruby_version: 3.
|
78
|
-
rails_version:
|
71
|
+
name: ruby3-2_rails7-2
|
72
|
+
ruby_version: 3.2.3
|
73
|
+
rails_version: 7.2.0
|
79
74
|
|
80
75
|
- bundle_and_test:
|
81
|
-
name:
|
82
|
-
ruby_version:
|
83
|
-
rails_version:
|
76
|
+
name: ruby3-3_rails7-1
|
77
|
+
ruby_version: 3.3.0
|
78
|
+
rails_version: 7.1.3
|
84
79
|
- bundle_and_test:
|
85
|
-
name:
|
86
|
-
ruby_version: 2.
|
87
|
-
rails_version:
|
88
|
-
- bundle_and_test:
|
89
|
-
name: ruby2-7_rails5-2
|
90
|
-
ruby_version: 2.7.7
|
91
|
-
rails_version: 5.2.8.1
|
92
|
-
|
80
|
+
name: ruby3-2_rails7-1
|
81
|
+
ruby_version: 3.2.3
|
82
|
+
rails_version: 7.1.3
|
data/lib/noid/rails/engine.rb
CHANGED
@@ -5,6 +5,18 @@ require 'rails'
|
|
5
5
|
module Noid
|
6
6
|
module Rails
|
7
7
|
class Engine < ::Rails::Engine
|
8
|
+
config.before_configuration do
|
9
|
+
# rubocop:disable Style/IfUnlessModifier
|
10
|
+
|
11
|
+
# see https://github.com/fxn/zeitwerk#for_gem
|
12
|
+
# Blacklight puts a generator into LOCAL APP lib/generators, so tell
|
13
|
+
# zeitwerk to ignore the whole directory? If we're using zeitwerk
|
14
|
+
#
|
15
|
+
# See: https://github.com/cbeer/engine_cart/issues/117
|
16
|
+
if ::Rails.try(:autoloaders).try(:main).respond_to?(:ignore)
|
17
|
+
::Rails.autoloaders.main.ignore(::Rails.root.join('lib', 'generators'))
|
18
|
+
end
|
19
|
+
end
|
8
20
|
end
|
9
21
|
end
|
10
22
|
end
|
data/lib/noid/rails/version.rb
CHANGED
data/noid-rails.gemspec
CHANGED
@@ -17,8 +17,9 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0")
|
18
18
|
spec.test_files = spec.files.grep(%r{^spec/})
|
19
19
|
spec.require_paths = ['lib']
|
20
|
+
spec.metadata = { "rubygems_mfa_required" => "true" }
|
20
21
|
|
21
|
-
spec.add_dependency 'actionpack', '>= 5.0.0', '<
|
22
|
+
spec.add_dependency 'actionpack', '>= 5.0.0', '< 9'
|
22
23
|
spec.add_dependency 'noid', '~> 0.9'
|
23
24
|
|
24
25
|
spec.add_development_dependency 'bixby', '~> 5.0.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: noid-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael J. Giarlo
|
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: actionpack
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: 5.0.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '9'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: 5.0.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '9'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: noid
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -194,8 +194,9 @@ files:
|
|
194
194
|
homepage: https://github.com/samvera/noid-rails
|
195
195
|
licenses:
|
196
196
|
- Apache2
|
197
|
-
metadata:
|
198
|
-
|
197
|
+
metadata:
|
198
|
+
rubygems_mfa_required: 'true'
|
199
|
+
post_install_message:
|
199
200
|
rdoc_options: []
|
200
201
|
require_paths:
|
201
202
|
- lib
|
@@ -210,8 +211,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
211
|
- !ruby/object:Gem::Version
|
211
212
|
version: '0'
|
212
213
|
requirements: []
|
213
|
-
rubygems_version: 3.
|
214
|
-
signing_key:
|
214
|
+
rubygems_version: 3.5.3
|
215
|
+
signing_key:
|
215
216
|
specification_version: 4
|
216
217
|
summary: Noid identifier services for Rails-based applications
|
217
218
|
test_files:
|