hydra-role-management 1.0.3 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +102 -39
- data/.rubocop.yml +5 -2
- data/CONTRIBUTING.md +23 -1
- data/README.md +13 -6
- data/app/controllers/concerns/hydra/role_management/roles_behavior.rb +1 -1
- data/app/models/role.rb +1 -1
- data/hydra-role-management.gemspec +6 -4
- data/lib/generators/roles/roles_generator.rb +2 -2
- data/lib/generators/roles/templates/hydra_role_management_rails3.rb +1 -1
- data/lib/hydra/role_management/version.rb +1 -1
- data/lib/hydra/role_management.rb +12 -0
- data/spec/test_app_templates/app/models/solr_document.rb +0 -1
- metadata +32 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0abc02b3f0cc25b9a09809f8360a301c518ab5f21d0bdb6301e21841a19edc06
|
4
|
+
data.tar.gz: 15c6403571be850bb380b8c263223f5fff8d09574910cebcb9b92f1d93d7d1ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62bf62a8b148091907b8d6514d18b3adf720bab1a4e38806534c1cb362e0c33ddddb75aa17b1c9f219c31a67a370824d16ff2fa3c3f15a5e095311d201416e5c
|
7
|
+
data.tar.gz: 59cc621704a81315dbfa137ddbfc6a54cb3dfe6607713b0e2d10dec6d058cf1f00889093d5af917c71e25357de3285814e9427c8969a1dfb97b1431943d15aa8
|
data/.circleci/config.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
version: 2.1
|
3
3
|
orbs:
|
4
|
-
samvera: samvera/circleci-orb@0
|
4
|
+
samvera: samvera/circleci-orb@1.0
|
5
5
|
jobs:
|
6
6
|
test:
|
7
7
|
parameters:
|
@@ -9,7 +9,7 @@ jobs:
|
|
9
9
|
type: string
|
10
10
|
bundler_version:
|
11
11
|
type: string
|
12
|
-
default:
|
12
|
+
default: 2.4.5
|
13
13
|
rails_version:
|
14
14
|
type: string
|
15
15
|
executor:
|
@@ -20,18 +20,36 @@ jobs:
|
|
20
20
|
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
|
21
21
|
ENGINE_CART_RAILS_OPTIONS: --skip-git --skip-bundle --skip-listen --skip-spring --skip-yarn --skip-keeps --skip-action-cable --skip-coffee --skip-puma --skip-test
|
22
22
|
steps:
|
23
|
+
- run:
|
24
|
+
name: Update the apt package repository cache
|
25
|
+
command: |
|
26
|
+
sudo apt-get update
|
27
|
+
- run:
|
28
|
+
name: Install required apt packages
|
29
|
+
command: |
|
30
|
+
sudo apt-get install -y libsqlite3-dev
|
23
31
|
- samvera/cached_checkout
|
24
|
-
-
|
32
|
+
- run:
|
33
|
+
name: Check for a branch named 'master'
|
34
|
+
command: |
|
35
|
+
git fetch --all --quiet --prune --prune-tags
|
36
|
+
if [[ -n "$(git branch --all --list master */master)" ]]; then
|
37
|
+
echo "A branch named 'master' was found. Please remove it."
|
38
|
+
echo "$(git branch --all --list master */master)"
|
39
|
+
fi
|
40
|
+
[[ -z "$(git branch --all --list master */master)" ]]
|
41
|
+
- samvera/bundle:
|
25
42
|
ruby_version: << parameters.ruby_version >>
|
26
43
|
bundler_version: << parameters.bundler_version >>
|
27
|
-
project: hydra-role-management
|
28
44
|
- samvera/rubocop
|
29
45
|
- samvera/engine_cart_generate:
|
30
46
|
cache_key: v1-internal-test-app-{{ checksum "hydra-role-management.gemspec" }}-{{ checksum "spec/test_app_templates/lib/generators/test_app_generator.rb" }}-{{ checksum "lib/generators/roles/roles_generator.rb" }}-<< parameters.rails_version >>-<< parameters.ruby_version >>
|
31
|
-
-
|
47
|
+
- run:
|
48
|
+
name: Fix test app's Gemfile
|
49
|
+
command: sed -i 's/\(^.*error_highlight.*$\)/# \1/' .internal_test_app/Gemfile
|
50
|
+
- samvera/bundle:
|
32
51
|
ruby_version: << parameters.ruby_version >>
|
33
52
|
bundler_version: << parameters.bundler_version >>
|
34
|
-
project: hydra-role-management
|
35
53
|
- samvera/parallel_rspec
|
36
54
|
- persist_to_workspace:
|
37
55
|
root: ~/
|
@@ -42,47 +60,92 @@ jobs:
|
|
42
60
|
workflows:
|
43
61
|
ci:
|
44
62
|
jobs:
|
63
|
+
# Rails 7.2
|
45
64
|
- test:
|
46
|
-
name:
|
47
|
-
ruby_version:
|
48
|
-
rails_version:
|
65
|
+
name: "ruby3-3_rails7-2"
|
66
|
+
ruby_version: 3.3.5
|
67
|
+
rails_version: 7.2.1
|
49
68
|
- test:
|
50
|
-
name:
|
51
|
-
ruby_version: 2.
|
52
|
-
rails_version:
|
69
|
+
name: "ruby3-2_rails7-2"
|
70
|
+
ruby_version: 3.2.5
|
71
|
+
rails_version: 7.2.1
|
53
72
|
- test:
|
54
|
-
name:
|
55
|
-
ruby_version:
|
56
|
-
rails_version:
|
73
|
+
name: "ruby3-1_rails7-2"
|
74
|
+
ruby_version: 3.1.6
|
75
|
+
rails_version: 7.2.1
|
76
|
+
# Rails 7.1
|
57
77
|
- test:
|
58
|
-
name:
|
59
|
-
ruby_version:
|
60
|
-
rails_version:
|
78
|
+
name: "ruby3-3_rails7-1"
|
79
|
+
ruby_version: 3.3.5
|
80
|
+
rails_version: 7.1.4
|
61
81
|
- test:
|
62
|
-
name:
|
63
|
-
ruby_version: 2.
|
64
|
-
rails_version:
|
82
|
+
name: "ruby3-2_rails7-1"
|
83
|
+
ruby_version: 3.2.5
|
84
|
+
rails_version: 7.1.4
|
65
85
|
- test:
|
66
|
-
name:
|
67
|
-
ruby_version:
|
68
|
-
rails_version:
|
86
|
+
name: "ruby3-1_rails7-1"
|
87
|
+
ruby_version: 3.1.6
|
88
|
+
rails_version: 7.1.4
|
89
|
+
# Rails 7.0
|
69
90
|
- test:
|
70
|
-
name:
|
71
|
-
ruby_version:
|
72
|
-
rails_version:
|
91
|
+
name: "ruby3-3_rails7-0"
|
92
|
+
ruby_version: 3.3.5
|
93
|
+
rails_version: 7.0.8.4
|
73
94
|
- test:
|
74
|
-
name:
|
75
|
-
ruby_version: 2.
|
76
|
-
rails_version:
|
95
|
+
name: "ruby3-2_rails7-0"
|
96
|
+
ruby_version: 3.2.5
|
97
|
+
rails_version: 7.0.8.4
|
77
98
|
- test:
|
78
|
-
name:
|
79
|
-
ruby_version:
|
80
|
-
rails_version:
|
99
|
+
name: "ruby3-1_rails7-0"
|
100
|
+
ruby_version: 3.1.6
|
101
|
+
rails_version: 7.0.8.4
|
102
|
+
|
103
|
+
nightly:
|
104
|
+
triggers:
|
105
|
+
- schedule:
|
106
|
+
cron: "0 0 * * *"
|
107
|
+
filters:
|
108
|
+
branches:
|
109
|
+
only:
|
110
|
+
- main
|
111
|
+
|
112
|
+
jobs:
|
113
|
+
# Rails 7.2
|
114
|
+
- test:
|
115
|
+
name: "ruby3-3_rails7-2"
|
116
|
+
ruby_version: 3.3.5
|
117
|
+
rails_version: 7.2.1
|
118
|
+
- test:
|
119
|
+
name: "ruby3-2_rails7-2"
|
120
|
+
ruby_version: 3.2.5
|
121
|
+
rails_version: 7.2.1
|
122
|
+
- test:
|
123
|
+
name: "ruby3-1_rails7-2"
|
124
|
+
ruby_version: 3.1.6
|
125
|
+
rails_version: 7.2.1
|
126
|
+
# Rails 7.1
|
127
|
+
- test:
|
128
|
+
name: "ruby3-3_rails7-1"
|
129
|
+
ruby_version: 3.3.5
|
130
|
+
rails_version: 7.1.4
|
131
|
+
- test:
|
132
|
+
name: "ruby3-2_rails7-1"
|
133
|
+
ruby_version: 3.2.5
|
134
|
+
rails_version: 7.1.4
|
135
|
+
- test:
|
136
|
+
name: "ruby3-1_rails7-1"
|
137
|
+
ruby_version: 3.1.6
|
138
|
+
rails_version: 7.1.4
|
139
|
+
# Rails 7.0
|
140
|
+
- test:
|
141
|
+
name: "ruby3-3_rails7-0"
|
142
|
+
ruby_version: 3.3.5
|
143
|
+
rails_version: 7.0.8.4
|
81
144
|
- test:
|
82
|
-
name:
|
83
|
-
ruby_version: 2.5
|
84
|
-
rails_version:
|
145
|
+
name: "ruby3-2_rails7-0"
|
146
|
+
ruby_version: 3.2.5
|
147
|
+
rails_version: 7.0.8.4
|
85
148
|
- test:
|
86
|
-
name:
|
87
|
-
ruby_version:
|
88
|
-
rails_version:
|
149
|
+
name: "ruby3-1_rails7-0"
|
150
|
+
ruby_version: 3.1.6
|
151
|
+
rails_version: 7.0.8.4
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
inherit_gem:
|
2
|
+
bixby: bixby_default.yml
|
3
|
+
|
1
4
|
AllCops:
|
2
|
-
TargetRubyVersion: 2.
|
5
|
+
TargetRubyVersion: 2.6
|
3
6
|
|
4
7
|
Bundler/DuplicatedGem:
|
5
8
|
Exclude:
|
@@ -14,7 +17,7 @@ Metrics/BlockLength:
|
|
14
17
|
- 'spec/routing/role_management_routes_spec.rb'
|
15
18
|
- hydra-role-management.gemspec
|
16
19
|
|
17
|
-
|
20
|
+
Layout/LineLength:
|
18
21
|
Exclude:
|
19
22
|
- ''
|
20
23
|
- 'lib/generators/roles/roles_generator.rb'
|
data/CONTRIBUTING.md
CHANGED
@@ -22,6 +22,28 @@ https://wiki.duraspace.org/display/samvera/Samvera+Community+Intellectual+Proper
|
|
22
22
|
|
23
23
|
You should also add yourself to the `CONTRIBUTORS.md` file in the root of the project.
|
24
24
|
|
25
|
+
## Language
|
26
|
+
|
27
|
+
The language we use matters. Today, tomorrow, and for years to come
|
28
|
+
people will read the code we write. They will judge us for our
|
29
|
+
design, logic, and the words we use to describe the system.
|
30
|
+
|
31
|
+
Our words should be accessible. Favor descriptive words that give
|
32
|
+
meaning while avoiding reinforcing systemic inequities. For example,
|
33
|
+
in the Samvera community, we should favor using allowed\_list instead
|
34
|
+
of whitelist, denied\_list instead of blacklist, or source/copy
|
35
|
+
instead of master/slave.
|
36
|
+
|
37
|
+
We're going to get it wrong, but this is a call to keep working to
|
38
|
+
make it right. View our code and the words we choose as a chance to
|
39
|
+
have a conversation. A chance to grow an understanding of the systems
|
40
|
+
we develop as well as the systems in which we live.
|
41
|
+
|
42
|
+
See [“Blacklists” and “whitelists”: a salutary warning concerning the
|
43
|
+
prevalence of racist language in discussions of predatory
|
44
|
+
publishing](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6148600/) for
|
45
|
+
further details.
|
46
|
+
|
25
47
|
## Contribution Tasks
|
26
48
|
|
27
49
|
* Reporting Issues
|
@@ -34,7 +56,7 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
34
56
|
### Reporting Issues
|
35
57
|
|
36
58
|
* Make sure you have a [GitHub account](https://github.com/signup/free)
|
37
|
-
* Submit a [Github issue](
|
59
|
+
* Submit a [Github issue](https://github.com/samvera/{{library}}/issues/) by:
|
38
60
|
* Clearly describing the issue
|
39
61
|
* Provide a descriptive summary
|
40
62
|
* Explain the expected behavior
|
data/README.md
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
# hydra-role-management
|
2
2
|
|
3
|
-
Code:
|
3
|
+
Code:
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/hydra-role-management.svg)](https://badge.fury.io/rb/hydra-role-management)
|
5
|
+
[![Build Status](https://circleci.com/gh/samvera/hydra-role-management.svg?style=svg)](https://circleci.com/gh/samvera/hydra-role-management)
|
6
|
+
[![Coverage Status](https://coveralls.io/repos/github/samvera/hydra-role-management/badge.svg?branch=main)](https://coveralls.io/github/samvera/hydra-role-management?branch=main)
|
4
7
|
|
5
|
-
Docs:
|
8
|
+
Docs:
|
9
|
+
[![Contribution Guidelines](http://img.shields.io/badge/CONTRIBUTING-Guidelines-blue.svg)](./CONTRIBUTING.md)
|
10
|
+
[![Apache 2.0 License](http://img.shields.io/badge/APACHE2-license-blue.svg)](./LICENSE.md)
|
6
11
|
|
7
|
-
|
12
|
+
Community Support: [![Samvera Community Slack](https://img.shields.io/badge/samvera-slack-blueviolet)](http://slack.samvera.org/)
|
8
13
|
|
9
14
|
# What is hydra-role-management?
|
10
15
|
|
@@ -14,11 +19,13 @@ As of version 1.0, this gem only supports Rails 5.
|
|
14
19
|
|
15
20
|
## Product Owner & Maintenance
|
16
21
|
|
17
|
-
|
22
|
+
`hydra-role-management` was a Core Component of the Samvera Community. Given a decline in available labor required for maintenance, this project no longer has a dedicated Product Owner. The documentation for what this means can be found [here](http://samvera.github.io/core_components.html#requirements-for-a-core-component).
|
18
23
|
|
19
24
|
### Product Owner
|
20
25
|
|
21
|
-
|
26
|
+
**Vacant**
|
27
|
+
|
28
|
+
_Until a Product Owner has been identified, we ask that you please direct all requests for support, bug reports, and general questions to the [`#dev` Channel on the Samvera Slack](https://samvera.slack.com/app_redirect?channel=dev)._
|
22
29
|
|
23
30
|
# Help
|
24
31
|
|
@@ -63,7 +70,7 @@ The Samvera community is here to help. Please see our [support guide](./SUPPORT.
|
|
63
70
|
github_changelog_generator --user samvera --project hydra-role-management --token YOUR_GITHUB_TOKEN_HERE
|
64
71
|
```
|
65
72
|
|
66
|
-
5. Commit these changes to the
|
73
|
+
5. Commit these changes to the main branch
|
67
74
|
|
68
75
|
6. Run `rake release`
|
69
76
|
|
data/app/models/role.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require File.expand_path('
|
3
|
+
require File.expand_path('lib/hydra/role_management/version', __dir__)
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.authors = ['Justin Coyne']
|
@@ -16,17 +16,19 @@ Gem::Specification.new do |gem|
|
|
16
16
|
gem.require_paths = ['lib']
|
17
17
|
gem.version = Hydra::RoleManagement::VERSION
|
18
18
|
gem.license = 'Apache 2.0'
|
19
|
+
gem.metadata = { "rubygems_mfa_required" => "true" }
|
19
20
|
|
20
|
-
gem.add_dependency 'blacklight'
|
21
|
+
gem.add_dependency 'blacklight', '< 8'
|
21
22
|
gem.add_dependency 'bootstrap_form'
|
22
23
|
gem.add_dependency 'bundler', '>= 1.5'
|
23
24
|
gem.add_dependency 'cancancan'
|
24
25
|
gem.add_dependency 'json', '>= 1.8'
|
25
|
-
gem.
|
26
|
+
gem.add_dependency 'psych', "~> 3.0"
|
27
|
+
gem.add_development_dependency 'bixby'
|
26
28
|
gem.add_development_dependency 'engine_cart', '~> 2.1'
|
27
29
|
gem.add_development_dependency 'github_changelog_generator'
|
28
30
|
gem.add_development_dependency 'pry-byebug'
|
29
|
-
gem.add_development_dependency 'rails-controller-testing', '~>
|
31
|
+
gem.add_development_dependency 'rails-controller-testing', '~> 1'
|
30
32
|
gem.add_development_dependency 'rake'
|
31
33
|
gem.add_development_dependency 'rspec-its'
|
32
34
|
gem.add_development_dependency 'rspec-rails'
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
# frozen_string_literal: true
|
3
2
|
|
4
3
|
require 'rails/generators'
|
@@ -8,7 +7,7 @@ require 'rails/generators/migration'
|
|
8
7
|
class RolesGenerator < Rails::Generators::Base
|
9
8
|
include Rails::Generators::Migration
|
10
9
|
|
11
|
-
source_root File.expand_path('
|
10
|
+
source_root File.expand_path('templates', __dir__)
|
12
11
|
|
13
12
|
argument :model_name, type: :string, default: 'user'
|
14
13
|
desc '
|
@@ -69,6 +68,7 @@ This generator makes the following changes to your application:
|
|
69
68
|
# file will be added to config/initializers and the correct code will be added to the model at runtime.
|
70
69
|
def rails3_attr_accessible
|
71
70
|
return if ActionController.const_defined? :StrongParameters
|
71
|
+
|
72
72
|
Rails.logger.info 'Role model will include attr_accessible :name because you are installing this gem in a Rails 3 app.'
|
73
73
|
copy_file 'hydra_role_management_rails3.rb', 'config/initializers/hydra_role_management_rails3.rb'
|
74
74
|
end
|
@@ -10,6 +10,18 @@ module Hydra
|
|
10
10
|
# Rails 4 should do this automatically:
|
11
11
|
config.paths.add 'app/controllers/concerns', eager_load: true
|
12
12
|
config.paths.add 'app/models/concerns', eager_load: true
|
13
|
+
|
14
|
+
config.before_configuration do
|
15
|
+
# rubocop:disable Style/IfUnlessModifier
|
16
|
+
# see https://github.com/fxn/zeitwerk#for_gem
|
17
|
+
# Blacklight puts a generator into LOCAL APP lib/generators, so tell
|
18
|
+
# zeitwerk to ignore the whole directory? If we're using zeitwerk
|
19
|
+
#
|
20
|
+
# See: https://github.com/cbeer/engine_cart/issues/117
|
21
|
+
if ::Rails.try(:autoloaders).try(:main).respond_to?(:ignore)
|
22
|
+
::Rails.autoloaders.main.ignore(::Rails.root.join('lib', 'generators'))
|
23
|
+
end
|
24
|
+
end
|
13
25
|
end
|
14
26
|
end
|
15
27
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hydra-role-management
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Coyne
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: blacklight
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "<"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '8'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "<"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '8'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bootstrap_form
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,19 +81,33 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '1.8'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: psych
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
90
|
-
type: :
|
89
|
+
version: '3.0'
|
90
|
+
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
96
|
+
version: '3.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: bixby
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: engine_cart
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,14 +156,14 @@ dependencies:
|
|
142
156
|
requirements:
|
143
157
|
- - "~>"
|
144
158
|
- !ruby/object:Gem::Version
|
145
|
-
version: '
|
159
|
+
version: '1'
|
146
160
|
type: :development
|
147
161
|
prerelease: false
|
148
162
|
version_requirements: !ruby/object:Gem::Requirement
|
149
163
|
requirements:
|
150
164
|
- - "~>"
|
151
165
|
- !ruby/object:Gem::Version
|
152
|
-
version: '
|
166
|
+
version: '1'
|
153
167
|
- !ruby/object:Gem::Dependency
|
154
168
|
name: rake
|
155
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -260,8 +274,9 @@ files:
|
|
260
274
|
homepage: https://github.com/samvera/hydra-role-management
|
261
275
|
licenses:
|
262
276
|
- Apache 2.0
|
263
|
-
metadata:
|
264
|
-
|
277
|
+
metadata:
|
278
|
+
rubygems_mfa_required: 'true'
|
279
|
+
post_install_message:
|
265
280
|
rdoc_options: []
|
266
281
|
require_paths:
|
267
282
|
- lib
|
@@ -276,8 +291,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
291
|
- !ruby/object:Gem::Version
|
277
292
|
version: '0'
|
278
293
|
requirements: []
|
279
|
-
rubygems_version: 3.
|
280
|
-
signing_key:
|
294
|
+
rubygems_version: 3.5.3
|
295
|
+
signing_key:
|
281
296
|
specification_version: 4
|
282
297
|
summary: Rails engine to do user roles in an RDBMS for hydra-head
|
283
298
|
test_files:
|