arclight 0.0.1 → 1.4.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 +5 -5
- data/.all-contributorsrc +450 -0
- data/.codeclimate.yml +5 -0
- data/.eslintrc +22 -0
- data/.github/workflows/ruby.yml +44 -0
- data/.gitignore +7 -0
- data/.rspec +0 -1
- data/.rubocop.yml +362 -0
- data/.rubocop_todo.yml +122 -0
- data/.solr_wrapper +5 -0
- data/CONTRIBUTING.md +43 -0
- data/CONTRIBUTORS.md +79 -0
- data/Gemfile +41 -0
- data/LICENSE.txt +1 -0
- data/README.md +100 -12
- data/Rakefile +13 -3
- data/app/assets/images/arclight/logo.png +0 -0
- data/app/assets/images/blacklight/bookmark.svg +1 -0
- data/app/assets/images/blacklight/collection.svg +5 -0
- data/app/assets/images/blacklight/compact.svg +1 -0
- data/app/assets/images/blacklight/container.svg +5 -0
- data/app/assets/images/blacklight/ead.svg +1 -0
- data/app/assets/images/blacklight/file.svg +5 -0
- data/app/assets/images/blacklight/folder.svg +1 -0
- data/app/assets/images/blacklight/list.svg +1 -0
- data/app/assets/images/blacklight/minus.svg +1 -0
- data/app/assets/images/blacklight/online.svg +5 -0
- data/app/assets/images/blacklight/pdf.svg +1 -0
- data/app/assets/images/blacklight/plus.svg +1 -0
- data/app/assets/images/blacklight/repository.svg +1 -0
- data/app/assets/javascripts/arclight/arclight.js +4 -0
- data/app/assets/javascripts/arclight/oembed_controller.js +58 -0
- data/app/assets/javascripts/arclight/truncate_controller.js +27 -0
- data/app/assets/stylesheets/arclight/application.scss +14 -0
- data/app/assets/stylesheets/arclight/build.scss +4 -0
- data/app/assets/stylesheets/arclight/modules/collection_search.scss +3 -0
- data/app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss +155 -0
- data/app/assets/stylesheets/arclight/modules/highlights.scss +11 -0
- data/app/assets/stylesheets/arclight/modules/icons.scss +20 -0
- data/app/assets/stylesheets/arclight/modules/layout.scss +220 -0
- data/app/assets/stylesheets/arclight/modules/mastheads.scss +57 -0
- data/app/assets/stylesheets/arclight/modules/repositories.scss +25 -0
- data/app/assets/stylesheets/arclight/modules/repository_card.scss +9 -0
- data/app/assets/stylesheets/arclight/modules/search_form.scss +9 -0
- data/app/assets/stylesheets/arclight/modules/search_results.scss +250 -0
- data/app/assets/stylesheets/arclight/modules/show_collection.scss +38 -0
- data/app/assets/stylesheets/arclight/modules/truncator.scss +58 -0
- data/app/assets/stylesheets/arclight/responsive.scss +13 -0
- data/app/assets/stylesheets/arclight/variables.scss +25 -0
- data/app/components/arclight/access_component.html.erb +14 -0
- data/app/components/arclight/access_component.rb +25 -0
- data/app/components/arclight/bookmark_component.html.erb +25 -0
- data/app/components/arclight/bookmark_component.rb +9 -0
- data/app/components/arclight/breadcrumb_component.rb +40 -0
- data/app/components/arclight/breadcrumbs_hierarchy_component.html.erb +34 -0
- data/app/components/arclight/breadcrumbs_hierarchy_component.rb +25 -0
- data/app/components/arclight/collection_context_component.html.erb +12 -0
- data/app/components/arclight/collection_context_component.rb +27 -0
- data/app/components/arclight/collection_info_component.html.erb +28 -0
- data/app/components/arclight/collection_info_component.rb +26 -0
- data/app/components/arclight/collection_sidebar_component.html.erb +15 -0
- data/app/components/arclight/collection_sidebar_component.rb +39 -0
- data/app/components/arclight/constraints_component.html.erb +7 -0
- data/app/components/arclight/constraints_component.rb +17 -0
- data/app/components/arclight/document_collection_context_component.html.erb +29 -0
- data/app/components/arclight/document_collection_context_component.rb +28 -0
- data/app/components/arclight/document_collection_hierarchy_component.html.erb +50 -0
- data/app/components/arclight/document_collection_hierarchy_component.rb +62 -0
- data/app/components/arclight/document_component.html.erb +39 -0
- data/app/components/arclight/document_component.rb +49 -0
- data/app/components/arclight/document_components_hierarchy_component.html.erb +32 -0
- data/app/components/arclight/document_components_hierarchy_component.rb +28 -0
- data/app/components/arclight/document_download_component.html.erb +24 -0
- data/app/components/arclight/document_download_component.rb +71 -0
- data/app/components/arclight/embed_component.html.erb +10 -0
- data/app/components/arclight/embed_component.rb +43 -0
- data/app/components/arclight/group_component.html.erb +34 -0
- data/app/components/arclight/group_component.rb +23 -0
- data/app/components/arclight/header_component.html.erb +5 -0
- data/app/components/arclight/header_component.rb +10 -0
- data/app/components/arclight/index_metadata_field_component.html.erb +16 -0
- data/app/components/arclight/index_metadata_field_component.rb +20 -0
- data/app/components/arclight/masthead_component.html.erb +15 -0
- data/app/components/arclight/masthead_component.rb +10 -0
- data/app/components/arclight/metadata_section_component.html.erb +13 -0
- data/app/components/arclight/metadata_section_component.rb +22 -0
- data/app/components/arclight/oembed_viewer_component.html.erb +5 -0
- data/app/components/arclight/oembed_viewer_component.rb +16 -0
- data/app/components/arclight/online_content_filter_component.html.erb +15 -0
- data/app/components/arclight/online_content_filter_component.rb +19 -0
- data/app/components/arclight/online_status_indicator_component.rb +19 -0
- data/app/components/arclight/repository_breadcrumb_component.html.erb +10 -0
- data/app/components/arclight/repository_breadcrumb_component.rb +17 -0
- data/app/components/arclight/repository_location_component.html.erb +20 -0
- data/app/components/arclight/repository_location_component.rb +10 -0
- data/app/components/arclight/search_bar_component.html.erb +27 -0
- data/app/components/arclight/search_bar_component.rb +32 -0
- data/app/components/arclight/search_result_breadcrumbs_component.html.erb +6 -0
- data/app/components/arclight/search_result_breadcrumbs_component.rb +37 -0
- data/app/components/arclight/search_result_component.html.erb +20 -0
- data/app/components/arclight/search_result_component.rb +18 -0
- data/app/components/arclight/search_result_title_component.html.erb +15 -0
- data/app/components/arclight/search_result_title_component.rb +15 -0
- data/app/components/arclight/sidebar_component.html.erb +9 -0
- data/app/components/arclight/sidebar_component.rb +19 -0
- data/app/components/arclight/upper_metadata_layout_component.rb +10 -0
- data/app/components/blacklight/icons/bookmark_component.rb +12 -0
- data/app/components/blacklight/icons/collection_component.rb +14 -0
- data/app/components/blacklight/icons/compact_component.rb +12 -0
- data/app/components/blacklight/icons/container_component.rb +14 -0
- data/app/components/blacklight/icons/ead_component.rb +12 -0
- data/app/components/blacklight/icons/file_component.rb +14 -0
- data/app/components/blacklight/icons/folder_component.rb +12 -0
- data/app/components/blacklight/icons/online_component.rb +15 -0
- data/app/components/blacklight/icons/pdf_component.rb +12 -0
- data/app/components/blacklight/icons/repository_component.rb +12 -0
- data/app/controllers/arclight/repositories_controller.rb +40 -0
- data/app/helpers/arclight/ead_format_helpers.rb +309 -0
- data/app/helpers/arclight/field_config_helpers.rb +26 -0
- data/app/helpers/arclight_helper.rb +108 -0
- data/app/models/arclight/document_downloads.rb +122 -0
- data/app/models/arclight/parent.rb +24 -0
- data/app/models/arclight/parents.rb +39 -0
- data/app/models/arclight/requests/aeon_external_request.rb +42 -0
- data/app/models/arclight/requests/aeon_web_ead.rb +52 -0
- data/app/models/arclight/requests/google_form.rb +49 -0
- data/app/models/concerns/arclight/catalog.rb +44 -0
- data/app/models/concerns/arclight/search_behavior.rb +47 -0
- data/app/models/concerns/arclight/solr_document.rb +159 -0
- data/app/presenters/arclight/index_presenter.rb +10 -0
- data/app/presenters/arclight/show_presenter.rb +54 -0
- data/app/views/arclight/.keep +0 -0
- data/app/views/arclight/_requests.html.erb +7 -0
- data/app/views/arclight/repositories/_repository.html.erb +43 -0
- data/app/views/arclight/repositories/index.html.erb +9 -0
- data/app/views/arclight/repositories/show.html.erb +37 -0
- data/app/views/arclight/requests/_aeon_external_request_endpoint.html.erb +8 -0
- data/app/views/arclight/requests/_aeon_web_ead.html.erb +6 -0
- data/app/views/arclight/requests/_google_form.html.erb +10 -0
- data/app/views/catalog/_document_list.html.erb +8 -0
- data/app/views/catalog/_group.html.erb +4 -0
- data/app/views/catalog/_group_toggle.html.erb +10 -0
- data/app/views/catalog/_search_results_header.html.erb +3 -0
- data/app/views/catalog/hierarchy.html.erb +19 -0
- data/app/views/catalog/index.html.erb +17 -0
- data/app/views/shared/_breadcrumbs.html.erb +3 -0
- data/app/views/shared/_main_menu_links.html.erb +6 -0
- data/arclight.gemspec +29 -11
- data/bin/rails +13 -0
- data/config/breadcrumbs.rb +24 -0
- data/config/i18n-tasks.yml +134 -0
- data/config/importmap.rb +3 -0
- data/config/locales/arclight.en.yml +100 -0
- data/config/repositories.yml +0 -0
- data/config/routes.rb +6 -0
- data/docker-compose.yml +16 -0
- data/lib/arclight/digital_object.rb +27 -0
- data/lib/arclight/engine.rb +47 -0
- data/lib/arclight/exceptions.rb +19 -0
- data/lib/arclight/hash_absolute_xpath.rb +62 -0
- data/lib/arclight/level_label.rb +46 -0
- data/lib/arclight/missing_id_strategy.rb +21 -0
- data/lib/arclight/normalized_date.rb +49 -0
- data/lib/arclight/normalized_id.rb +30 -0
- data/lib/arclight/normalized_title.rb +33 -0
- data/lib/arclight/repository.rb +116 -0
- data/lib/arclight/routes/hierarchy.rb +19 -0
- data/lib/arclight/routes.rb +8 -0
- data/lib/arclight/traject/ead2_component_config.rb +334 -0
- data/lib/arclight/traject/ead2_config.rb +315 -0
- data/lib/arclight/traject/nokogiri_namespaceless_reader.rb +22 -0
- data/lib/arclight/version.rb +3 -1
- data/lib/arclight/year_range.rb +111 -0
- data/lib/arclight.rb +11 -1
- data/lib/generators/arclight/install_generator.rb +126 -0
- data/lib/generators/arclight/templates/arclight.scss +5 -0
- data/lib/generators/arclight/templates/catalog_controller.rb +422 -0
- data/lib/generators/arclight/templates/config/downloads.yml +25 -0
- data/lib/generators/arclight/templates/config/locales/arclight.en.yml +61 -0
- data/lib/generators/arclight/templates/config/repositories.yml +53 -0
- data/lib/generators/arclight/update_generator.rb +22 -0
- data/lib/tasks/index.rake +84 -0
- data/package.json +30 -0
- data/solr/conf/_rest_managed.json +3 -0
- data/solr/conf/admin-extra.html +31 -0
- data/solr/conf/elevate.xml +36 -0
- data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/conf/protwords.txt +21 -0
- data/solr/conf/schema.xml +400 -0
- data/solr/conf/solrconfig.xml +328 -0
- data/solr/conf/spellings.txt +2 -0
- data/solr/conf/stopwords.txt +58 -0
- data/solr/conf/stopwords_en.txt +58 -0
- data/solr/conf/synonyms.txt +31 -0
- data/solr/conf/xslt/example.xsl +132 -0
- data/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/conf/xslt/luke.xsl +337 -0
- data/tasks/arclight.rake +72 -0
- data/template.rb +10 -0
- metadata +432 -20
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: '05920211714b612a9c15488e1943502f69f46cb546642b0e93b4e23c8a2837e8'
|
|
4
|
+
data.tar.gz: 2a81f4044f38d14d591db1cd38d6e8ba5b4703e3fd24e18539a9d1837c995873
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c14920c31d58ba3315badb0b469a3227c5f0a0f4c6e98fbed5362e486698aa7eec251efb335bcceacb5e4c7e812dc4118cb59d9950ccb9d20416f4b3d0f8528
|
|
7
|
+
data.tar.gz: 69ef42b405988a76171b0d7cacf8d73180d3cdaf8557762b0492168760cb6ee0db678570e839fc0a73bbc029469c589ce5b1c5f1b74257ade6311a99689fb568
|
data/.all-contributorsrc
ADDED
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
{
|
|
2
|
+
"projectName": "arclight",
|
|
3
|
+
"projectOwner": "projectblacklight",
|
|
4
|
+
"repoType": "github",
|
|
5
|
+
"repoHost": "https://github.com",
|
|
6
|
+
"files": [
|
|
7
|
+
"CONTRIBUTORS.md",
|
|
8
|
+
"README.md"
|
|
9
|
+
],
|
|
10
|
+
"imageSize": 125,
|
|
11
|
+
"commit": false,
|
|
12
|
+
"commitConvention": "none",
|
|
13
|
+
"types": {
|
|
14
|
+
"analysis": {
|
|
15
|
+
"symbol": "🔬",
|
|
16
|
+
"description": "Functional requirements and related research"
|
|
17
|
+
},
|
|
18
|
+
"inProduction": {
|
|
19
|
+
"symbol": "🏆",
|
|
20
|
+
"description": "Has a production implementation"
|
|
21
|
+
},
|
|
22
|
+
"productOwner": {
|
|
23
|
+
"symbol": "🗺",
|
|
24
|
+
"description": "Product owner"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contributors": [
|
|
28
|
+
{
|
|
29
|
+
"login": "seanaery",
|
|
30
|
+
"name": "Sean Aery",
|
|
31
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/3933756?v=4",
|
|
32
|
+
"profile": "https://github.com/seanaery",
|
|
33
|
+
"contributions": [
|
|
34
|
+
"code"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"login": "helrond",
|
|
39
|
+
"name": "Hillel Arnold",
|
|
40
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/607621?v=4",
|
|
41
|
+
"profile": "http://hillelarnold.com",
|
|
42
|
+
"contributions": [
|
|
43
|
+
"analysis",
|
|
44
|
+
"userTesting"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"login": "cbeer",
|
|
49
|
+
"name": "Chris Beer",
|
|
50
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/111218?v=4",
|
|
51
|
+
"profile": "http://cbeer.info",
|
|
52
|
+
"contributions": [
|
|
53
|
+
"code",
|
|
54
|
+
"doc"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"login": "labradford",
|
|
59
|
+
"name": "Lea Ann Bradford",
|
|
60
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/18175797?v=4",
|
|
61
|
+
"profile": "http://leaannbradford.com",
|
|
62
|
+
"contributions": [
|
|
63
|
+
"code"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"login": "christinach",
|
|
68
|
+
"name": "Christina Chortaria",
|
|
69
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/9905193?v=4",
|
|
70
|
+
"profile": "http://actspatial.com",
|
|
71
|
+
"contributions": [
|
|
72
|
+
"code"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"login": "mark-cooper",
|
|
77
|
+
"name": "Mark Cooper",
|
|
78
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/551470?v=4",
|
|
79
|
+
"profile": "https://github.com/mark-cooper",
|
|
80
|
+
"contributions": [
|
|
81
|
+
"code",
|
|
82
|
+
"plugin"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"login": "escowles",
|
|
87
|
+
"name": "Esmé Cowles",
|
|
88
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/856924?v=4",
|
|
89
|
+
"profile": "http://knittles.ticklefish.org/",
|
|
90
|
+
"contributions": [
|
|
91
|
+
"business",
|
|
92
|
+
"analysis"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"login": "tomcramer",
|
|
97
|
+
"name": "Tom Cramer",
|
|
98
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/1054837?v=4",
|
|
99
|
+
"profile": "https://github.com/tomcramer",
|
|
100
|
+
"contributions": [
|
|
101
|
+
"business"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"login": "mdalmau",
|
|
106
|
+
"name": "Michelle Dalmau",
|
|
107
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/573273?v=4",
|
|
108
|
+
"profile": "https://github.com/mdalmau",
|
|
109
|
+
"contributions": [
|
|
110
|
+
"business"
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"login": "billdueber",
|
|
115
|
+
"name": "Bill Dueber",
|
|
116
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/114006?v=4",
|
|
117
|
+
"profile": "http://robotlibrarian.billdueber.com/",
|
|
118
|
+
"contributions": [
|
|
119
|
+
"analysis",
|
|
120
|
+
"code"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"login": "jwd",
|
|
125
|
+
"name": "Jon Dunn",
|
|
126
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/842343?v=4",
|
|
127
|
+
"profile": "https://github.com/jwd",
|
|
128
|
+
"contributions": [
|
|
129
|
+
"business"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"login": "eckardm",
|
|
134
|
+
"name": "Max Eckard",
|
|
135
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/7072443?v=4",
|
|
136
|
+
"profile": "https://github.com/eckardm",
|
|
137
|
+
"contributions": [
|
|
138
|
+
"analysis",
|
|
139
|
+
"productOwner",
|
|
140
|
+
"userTesting"
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"login": "jrgriffiniii",
|
|
145
|
+
"name": "James R. Griffin III",
|
|
146
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/1443986?v=4",
|
|
147
|
+
"profile": "https://github.com/jrgriffiniii",
|
|
148
|
+
"contributions": [
|
|
149
|
+
"code"
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"login": "p-galligan",
|
|
154
|
+
"name": "Patrick Galligan",
|
|
155
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/2585069?v=4",
|
|
156
|
+
"profile": "https://github.com/p-galligan",
|
|
157
|
+
"contributions": [
|
|
158
|
+
"userTesting"
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"login": "ggeisler",
|
|
163
|
+
"name": "Gary Geisler",
|
|
164
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/101482?v=4",
|
|
165
|
+
"profile": "http://ggeisler.com",
|
|
166
|
+
"contributions": [
|
|
167
|
+
"code",
|
|
168
|
+
"design"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"login": "bonniegee",
|
|
173
|
+
"name": "Bonnie Gordon",
|
|
174
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/8737364?v=4",
|
|
175
|
+
"profile": "https://github.com/bonniegee",
|
|
176
|
+
"contributions": [
|
|
177
|
+
"userTesting"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"login": "mswendyh",
|
|
182
|
+
"name": "Wendy Hagenmaier",
|
|
183
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/7033667?v=4",
|
|
184
|
+
"profile": "https://github.com/mswendyh",
|
|
185
|
+
"contributions": [
|
|
186
|
+
"analysis"
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "Jim Halliday",
|
|
191
|
+
"avatar_url": "http://gravatar.com/avatar/8b53dcb509d4b1fe8dd74da6a94395ef.jpg?d=retro",
|
|
192
|
+
"contributions": [
|
|
193
|
+
"business"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"login": "jlhardes",
|
|
198
|
+
"name": "Julie Hardesty",
|
|
199
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/3440166?v=4",
|
|
200
|
+
"profile": "https://github.com/jlhardes",
|
|
201
|
+
"contributions": [
|
|
202
|
+
"analysis",
|
|
203
|
+
"productOwner"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"login": "drh-stanford",
|
|
208
|
+
"name": "Darren Hardy",
|
|
209
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/1861171?v=4",
|
|
210
|
+
"profile": "http://stanford.edu/~drh",
|
|
211
|
+
"contributions": [
|
|
212
|
+
"code",
|
|
213
|
+
"doc"
|
|
214
|
+
]
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"login": "drhardy",
|
|
218
|
+
"name": "Darren Hardy",
|
|
219
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/25580222?v=4",
|
|
220
|
+
"profile": "https://github.com/drhardy",
|
|
221
|
+
"contributions": [
|
|
222
|
+
"code"
|
|
223
|
+
]
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"login": "regineheberlein",
|
|
227
|
+
"name": "Regine Heberlein",
|
|
228
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/5940563?v=4",
|
|
229
|
+
"profile": "https://github.com/regineheberlein",
|
|
230
|
+
"contributions": [
|
|
231
|
+
"analysis",
|
|
232
|
+
"productOwner"
|
|
233
|
+
]
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"login": "noahgh221",
|
|
237
|
+
"name": "Noah Huffman",
|
|
238
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/7328518?v=4",
|
|
239
|
+
"profile": "https://github.com/noahgh221",
|
|
240
|
+
"contributions": [
|
|
241
|
+
"analysis",
|
|
242
|
+
"productOwner"
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"login": "njaffer",
|
|
247
|
+
"name": "Nabeela Jaffer",
|
|
248
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/12487929?v=4",
|
|
249
|
+
"profile": "https://github.com/njaffer",
|
|
250
|
+
"contributions": [
|
|
251
|
+
"analysis",
|
|
252
|
+
"business"
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"login": "jkeck",
|
|
257
|
+
"name": "Jessie Keck",
|
|
258
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/96776?v=4",
|
|
259
|
+
"profile": "https://github.com/jkeck",
|
|
260
|
+
"contributions": [
|
|
261
|
+
"code",
|
|
262
|
+
"doc"
|
|
263
|
+
]
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"login": "gordonleacock",
|
|
267
|
+
"name": "Gordon Leacock",
|
|
268
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/12927191?v=4",
|
|
269
|
+
"profile": "https://github.com/gordonleacock",
|
|
270
|
+
"contributions": [
|
|
271
|
+
"code",
|
|
272
|
+
"doc"
|
|
273
|
+
]
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"login": "anarchivist",
|
|
277
|
+
"name": "Mark A. Matienzo",
|
|
278
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/73732?v=4",
|
|
279
|
+
"profile": "https://matienzo.org/",
|
|
280
|
+
"contributions": [
|
|
281
|
+
"projectManagement",
|
|
282
|
+
"business",
|
|
283
|
+
"analysis",
|
|
284
|
+
"productOwner"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"login": "archivistsarah",
|
|
289
|
+
"name": "Sarah Newhouse",
|
|
290
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/25084902?v=4",
|
|
291
|
+
"profile": "https://github.com/archivistsarah",
|
|
292
|
+
"contributions": [
|
|
293
|
+
"analysis"
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"login": "grepcats",
|
|
298
|
+
"name": "Kayla Ondracek",
|
|
299
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/7513448?v=4",
|
|
300
|
+
"profile": "https://github.com/grepcats",
|
|
301
|
+
"contributions": [
|
|
302
|
+
"analysis"
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"login": "djpillen",
|
|
307
|
+
"name": "Dallas Pillen",
|
|
308
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/11635158?v=4",
|
|
309
|
+
"profile": "https://github.com/djpillen",
|
|
310
|
+
"contributions": [
|
|
311
|
+
"code",
|
|
312
|
+
"userTesting"
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"login": "cmkpowell",
|
|
317
|
+
"name": "Chris Powell",
|
|
318
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/16540397?v=4",
|
|
319
|
+
"profile": "https://github.com/cmkpowell",
|
|
320
|
+
"contributions": [
|
|
321
|
+
"analysis",
|
|
322
|
+
"productOwner"
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"login": "mejackreed",
|
|
327
|
+
"name": "Jack Reed",
|
|
328
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/1656824?v=4",
|
|
329
|
+
"profile": "https://www.jack-reed.com/",
|
|
330
|
+
"contributions": [
|
|
331
|
+
"code",
|
|
332
|
+
"doc"
|
|
333
|
+
]
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"login": "John-Rees",
|
|
337
|
+
"name": "John Rees",
|
|
338
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/29233549?v=4",
|
|
339
|
+
"profile": "https://github.com/John-Rees",
|
|
340
|
+
"contributions": [
|
|
341
|
+
"analysis"
|
|
342
|
+
]
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"login": "joshschneider",
|
|
346
|
+
"name": "Josh Schneider",
|
|
347
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/12468197?v=4",
|
|
348
|
+
"profile": "https://github.com/joshschneider",
|
|
349
|
+
"contributions": [
|
|
350
|
+
"analysis",
|
|
351
|
+
"productOwner"
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"login": "willsexton",
|
|
356
|
+
"name": "Will Sexton",
|
|
357
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/1359320?v=4",
|
|
358
|
+
"profile": "https://github.com/willsexton",
|
|
359
|
+
"contributions": [
|
|
360
|
+
"business"
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"login": "shallcro",
|
|
365
|
+
"name": "Mike Shallcross",
|
|
366
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/43279347?v=4",
|
|
367
|
+
"profile": "https://github.com/shallcro",
|
|
368
|
+
"contributions": [
|
|
369
|
+
"analysis"
|
|
370
|
+
]
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"login": "remocrevo",
|
|
374
|
+
"name": "Remington Steed",
|
|
375
|
+
"avatar_url": "https://avatars1.githubusercontent.com/u/8701105?v=4",
|
|
376
|
+
"profile": "https://github.com/remocrevo",
|
|
377
|
+
"contributions": [
|
|
378
|
+
"code"
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"login": "tampakis",
|
|
383
|
+
"name": "Nikitas Tampakis",
|
|
384
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/4650153?v=4",
|
|
385
|
+
"profile": "https://github.com/tampakis",
|
|
386
|
+
"contributions": [
|
|
387
|
+
"analysis"
|
|
388
|
+
]
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"login": "estelendur",
|
|
392
|
+
"name": "Esty Thomas",
|
|
393
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/10409866?v=4",
|
|
394
|
+
"profile": "https://github.com/estelendur",
|
|
395
|
+
"contributions": [
|
|
396
|
+
"code"
|
|
397
|
+
]
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"login": "camillevilla",
|
|
401
|
+
"name": "Camille Villa",
|
|
402
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/5402927?v=4",
|
|
403
|
+
"profile": "http://camillevilla.github.io",
|
|
404
|
+
"contributions": [
|
|
405
|
+
"code",
|
|
406
|
+
"doc"
|
|
407
|
+
]
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"login": "jvine",
|
|
411
|
+
"name": "Jennifer Vine",
|
|
412
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/6945691?v=4",
|
|
413
|
+
"profile": "https://github.com/jvine",
|
|
414
|
+
"contributions": [
|
|
415
|
+
"design"
|
|
416
|
+
]
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"login": "jweise",
|
|
420
|
+
"name": "John Weise",
|
|
421
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/114413?v=4",
|
|
422
|
+
"profile": "https://github.com/jweise",
|
|
423
|
+
"contributions": [
|
|
424
|
+
"business"
|
|
425
|
+
]
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"login": "gwiedeman",
|
|
429
|
+
"name": "Gregory Wiedeman",
|
|
430
|
+
"avatar_url": "https://avatars0.githubusercontent.com/u/10030353?v=4",
|
|
431
|
+
"profile": "https://github.com/gwiedeman",
|
|
432
|
+
"contributions": [
|
|
433
|
+
"code",
|
|
434
|
+
"bug",
|
|
435
|
+
"userTesting",
|
|
436
|
+
"inProduction"
|
|
437
|
+
]
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"login": "lauraw15",
|
|
441
|
+
"name": "Laura Wilsey",
|
|
442
|
+
"avatar_url": "https://avatars2.githubusercontent.com/u/6343788?v=4",
|
|
443
|
+
"profile": "https://github.com/lauraw15",
|
|
444
|
+
"contributions": [
|
|
445
|
+
"analysis"
|
|
446
|
+
]
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"contributorsPerLine": 5
|
|
450
|
+
}
|
data/.codeclimate.yml
ADDED
data/.eslintrc
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"es6": true
|
|
4
|
+
},
|
|
5
|
+
"parserOptions": {
|
|
6
|
+
"ecmaVersion": 2022,
|
|
7
|
+
"sourceType": "module"
|
|
8
|
+
},
|
|
9
|
+
"extends": "airbnb-base/legacy",
|
|
10
|
+
"globals": {
|
|
11
|
+
"Blacklight": true,
|
|
12
|
+
"bootstrap": true,
|
|
13
|
+
"Stimulus": true,
|
|
14
|
+
},
|
|
15
|
+
"rules": {
|
|
16
|
+
"no-param-reassign": [2, { "props": false }],
|
|
17
|
+
"func-names": ["error", "never"],
|
|
18
|
+
"indent": ["warn"],
|
|
19
|
+
"quotes": ["error", "single", { "avoidEscape": true }],
|
|
20
|
+
"semi": ["warn", "never"]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [main]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
rails_version: [7.1.3.4]
|
|
15
|
+
ruby: ["3.1", "3.2", "3.3"]
|
|
16
|
+
env:
|
|
17
|
+
RAILS_VERSION: ${{ matrix.rails_version }}
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
21
|
+
uses: ruby/setup-ruby@v1
|
|
22
|
+
with:
|
|
23
|
+
bundler: latest
|
|
24
|
+
ruby-version: ${{ matrix.ruby }}
|
|
25
|
+
- name: Install dependencies with Rails ${{ matrix.rails_version }}
|
|
26
|
+
run: bundle install
|
|
27
|
+
- name: Run tests
|
|
28
|
+
run: bundle exec rake ci
|
|
29
|
+
lint:
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout code
|
|
33
|
+
uses: actions/checkout@v4
|
|
34
|
+
- name: Install Ruby and gems
|
|
35
|
+
uses: ruby/setup-ruby@v1
|
|
36
|
+
with:
|
|
37
|
+
bundler: latest
|
|
38
|
+
ruby-version: 3.2
|
|
39
|
+
- name: Install dependencies with Bundler
|
|
40
|
+
run: bundle install
|
|
41
|
+
- name: Install dependencies with yarn
|
|
42
|
+
run: yarn install
|
|
43
|
+
- name: Lint Ruby files
|
|
44
|
+
run: bundle exec rake rubocop eslint
|
data/.gitignore
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
/.bundle/
|
|
2
|
+
/.ruby-version
|
|
2
3
|
/.yardoc
|
|
3
4
|
/Gemfile.lock
|
|
5
|
+
/yarn.lock
|
|
4
6
|
/_yardoc/
|
|
5
7
|
/coverage/
|
|
6
8
|
/doc/
|
|
7
9
|
/pkg/
|
|
8
10
|
/spec/reports/
|
|
9
11
|
/tmp/
|
|
12
|
+
/app/assets/builds/
|
|
10
13
|
|
|
11
14
|
# rspec failure tracking
|
|
12
15
|
.rspec_status
|
|
16
|
+
|
|
17
|
+
.internal_test_app
|
|
18
|
+
|
|
19
|
+
/node_modules/
|
data/.rspec
CHANGED