berkeley_library-marc 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/build.yml +18 -0
- data/.gitignore +388 -0
- data/.idea/inspectionProfiles/Project_Default.xml +20 -0
- data/.idea/marc.iml +101 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.rubocop.yml +334 -0
- data/.ruby-version +1 -0
- data/.simplecov +8 -0
- data/.yardopts +1 -0
- data/CHANGES.md +12 -0
- data/Dockerfile +57 -0
- data/Gemfile +3 -0
- data/Jenkinsfile +18 -0
- data/LICENSE.md +21 -0
- data/README.md +4 -0
- data/Rakefile +20 -0
- data/berkeley_library-marc.gemspec +42 -0
- data/docker-compose.yml +15 -0
- data/lib/.rubocop.yml +6 -0
- data/lib/berkeley_library/marc.rb +3 -0
- data/lib/berkeley_library/marc/field_info.rb +1 -0
- data/lib/berkeley_library/marc/field_info/ctrl_fields/data/ctrl_fields_standard.txt +2143 -0
- data/lib/berkeley_library/marc/field_info/leader/data/leader_standard.txt +87 -0
- data/lib/berkeley_library/marc/field_info/var_fields.rb +46 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data.rb +4 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/mapping-orig.tsv +265 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_berkeley_9xx.txt +53 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_berkeley_9xx_parsed.rb +51 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_standard.txt +5458 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_standard_parsed.rb +6577 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_tind_reserved.txt +44 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_tind_reserved_parsed.rb +30 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_ucblit_tind.txt +105 -0
- data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_ucblit_tind_parsed.rb +114 -0
- data/lib/berkeley_library/marc/field_info/var_fields/ind_def.rb +39 -0
- data/lib/berkeley_library/marc/field_info/var_fields/ind_val_def.rb +27 -0
- data/lib/berkeley_library/marc/field_info/var_fields/instrument_or_voices_code.rb +26 -0
- data/lib/berkeley_library/marc/field_info/var_fields/obsolescible.rb +55 -0
- data/lib/berkeley_library/marc/field_info/var_fields/section.rb +50 -0
- data/lib/berkeley_library/marc/field_info/var_fields/subfield_def.rb +50 -0
- data/lib/berkeley_library/marc/field_info/var_fields/subfield_val.rb +24 -0
- data/lib/berkeley_library/marc/field_info/var_fields/var_field_def.rb +62 -0
- data/lib/berkeley_library/marc/field_info/var_fields/var_field_list.rb +43 -0
- data/lib/berkeley_library/marc/field_info/var_fields/var_field_parser.rb +136 -0
- data/lib/berkeley_library/marc/field_info/var_fields/var_field_transform.rb +160 -0
- data/lib/berkeley_library/marc/module_info.rb +14 -0
- data/lib/marc_extensions.rb +1 -0
- data/lib/marc_extensions/data_field.rb +29 -0
- data/lib/marc_extensions/field_map.rb +63 -0
- data/lib/marc_extensions/record.rb +100 -0
- data/lib/marc_extensions/subfield.rb +21 -0
- data/lib/marc_extensions/xml_reader.rb +19 -0
- data/rakelib/bundle.rake +8 -0
- data/rakelib/coverage.rake +11 -0
- data/rakelib/gem.rake +54 -0
- data/rakelib/rubocop.rake +18 -0
- data/rakelib/spec.rake +2 -0
- data/spec/.rubocop.yml +37 -0
- data/spec/berkeley_library/marc/field_info/var_fields/var_field_def_spec.rb +26 -0
- data/spec/berkeley_library/marc/field_info/var_fields/var_field_parser_spec.rb +596 -0
- data/spec/berkeley_library/marc/field_info/var_fields/var_field_transform_spec.rb +173 -0
- data/spec/berkeley_library/marc/field_info/var_fields_spec.rb +112 -0
- data/spec/data/field_info/vf_046.txt +32 -0
- data/spec/data/field_info/vf_048.txt +112 -0
- data/spec/data/record-187888.xml +78 -0
- data/spec/marc_extensions/data_field_spec.rb +13 -0
- data/spec/marc_extensions/record_spec.rb +211 -0
- data/spec/spec_helper.rb +27 -0
- metadata +354 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d5d4bd83848178fb12dfa2689eb0c061501589a44c15458482c0402b8994cc78
|
4
|
+
data.tar.gz: 1be0a5638a27fa0c3de4e4a229667ebdd563c499a512dbdf581891557088bef3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 630dab5bf6bb69783443351b04b47a04f9eeef095da59b737d37285b00c088586ae959f913e77b255c23259d26af8e2630c828f3af1ed47dae6c0049b31dea3a
|
7
|
+
data.tar.gz: 7711cb6ed38d81bca16cccfe3d63d95c5f73e3faeeba4305bce7ce9659764ef73e2df58a8629a4602da1c77b1a3df09012080031391a9976ce2f968017d21b1c
|
@@ -0,0 +1,18 @@
|
|
1
|
+
name: Build
|
2
|
+
on: [ push, pull_request ]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
strategy:
|
6
|
+
fail-fast: false
|
7
|
+
matrix:
|
8
|
+
os: [ ubuntu-latest, macos-latest ]
|
9
|
+
ruby-version: [ '2.7', '3.0' ]
|
10
|
+
runs-on: ${{ matrix.os }}
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
17
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
18
|
+
- run: bundle exec rake
|
data/.gitignore
ADDED
@@ -0,0 +1,388 @@
|
|
1
|
+
############################################################
|
2
|
+
# Custom ignores
|
3
|
+
|
4
|
+
# github-markdown-preview previews
|
5
|
+
*.md.html
|
6
|
+
|
7
|
+
# Additional IDEA/RubyMine ignores
|
8
|
+
.idea/.rakeTasks
|
9
|
+
|
10
|
+
# Don't commit Gemfile.lock for libraries
|
11
|
+
Gemfile.lock
|
12
|
+
|
13
|
+
# build artifacts
|
14
|
+
/artifacts/
|
15
|
+
|
16
|
+
############################################################
|
17
|
+
# Generated ignores
|
18
|
+
|
19
|
+
#### joe made this: http://goel.io/joe
|
20
|
+
|
21
|
+
#### ruby ####
|
22
|
+
*.gem
|
23
|
+
*.rbc
|
24
|
+
/.config
|
25
|
+
/coverage/
|
26
|
+
/InstalledFiles
|
27
|
+
/pkg/
|
28
|
+
/spec/reports/
|
29
|
+
/spec/examples.txt
|
30
|
+
/test/tmp/
|
31
|
+
/test/version_tmp/
|
32
|
+
/tmp/
|
33
|
+
|
34
|
+
# Used by dotenv library to load environment variables.
|
35
|
+
# .env
|
36
|
+
|
37
|
+
# Ignore Byebug command history file.
|
38
|
+
.byebug_history
|
39
|
+
|
40
|
+
## Specific to RubyMotion:
|
41
|
+
.dat*
|
42
|
+
.repl_history
|
43
|
+
build/
|
44
|
+
*.bridgesupport
|
45
|
+
build-iPhoneOS/
|
46
|
+
build-iPhoneSimulator/
|
47
|
+
|
48
|
+
## Specific to RubyMotion (use of CocoaPods):
|
49
|
+
#
|
50
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
51
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
52
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
53
|
+
#
|
54
|
+
# vendor/Pods/
|
55
|
+
|
56
|
+
## Documentation cache and generated files:
|
57
|
+
/.yardoc/
|
58
|
+
/_yardoc/
|
59
|
+
/doc/
|
60
|
+
/rdoc/
|
61
|
+
|
62
|
+
## Environment normalization:
|
63
|
+
/.bundle/
|
64
|
+
/vendor/bundle
|
65
|
+
/lib/bundler/man/
|
66
|
+
|
67
|
+
# for a library or gem, you might want to ignore these files since the code is
|
68
|
+
# intended to run in multiple environments; otherwise, check them in:
|
69
|
+
# Gemfile.lock
|
70
|
+
# .ruby-version
|
71
|
+
# .ruby-gemset
|
72
|
+
|
73
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
74
|
+
.rvmrc
|
75
|
+
|
76
|
+
|
77
|
+
#### rails ####
|
78
|
+
*.rbc
|
79
|
+
capybara-*.html
|
80
|
+
.rspec
|
81
|
+
/db/*.sqlite3
|
82
|
+
/db/*.sqlite3-journal
|
83
|
+
/db/*.sqlite3-[0-9]*
|
84
|
+
/public/system
|
85
|
+
/coverage/
|
86
|
+
/spec/tmp
|
87
|
+
*.orig
|
88
|
+
rerun.txt
|
89
|
+
pickle-email-*.html
|
90
|
+
|
91
|
+
# Ignore all logfiles and tempfiles.
|
92
|
+
/log/*
|
93
|
+
/tmp/*
|
94
|
+
!/log/.keep
|
95
|
+
!/tmp/.keep
|
96
|
+
|
97
|
+
# Comment out this rule if you are OK with secrets being uploaded to the repo
|
98
|
+
config/initializers/secret_token.rb
|
99
|
+
config/master.key
|
100
|
+
|
101
|
+
# Only include if you have production secrets in this file, which is no longer a Rails default
|
102
|
+
# config/secrets.yml
|
103
|
+
|
104
|
+
# dotenv
|
105
|
+
# Comment out this rule if environment variables can be committed
|
106
|
+
.env
|
107
|
+
|
108
|
+
## Environment normalization:
|
109
|
+
/.bundle
|
110
|
+
/vendor/bundle
|
111
|
+
|
112
|
+
# these should all be checked in to normalize the environment:
|
113
|
+
# Gemfile.lock, .ruby-version, .ruby-gemset
|
114
|
+
|
115
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
116
|
+
.rvmrc
|
117
|
+
|
118
|
+
# if using bower-rails ignore default bower_components path bower.json files
|
119
|
+
/vendor/assets/bower_components
|
120
|
+
*.bowerrc
|
121
|
+
bower.json
|
122
|
+
|
123
|
+
# Ignore pow environment settings
|
124
|
+
.powenv
|
125
|
+
|
126
|
+
# Ignore Byebug command history file.
|
127
|
+
.byebug_history
|
128
|
+
|
129
|
+
# Ignore node_modules
|
130
|
+
node_modules/
|
131
|
+
|
132
|
+
# Ignore precompiled javascript packs
|
133
|
+
/public/packs
|
134
|
+
/public/packs-test
|
135
|
+
/public/assets
|
136
|
+
|
137
|
+
# Ignore yarn files
|
138
|
+
/yarn-error.log
|
139
|
+
yarn-debug.log*
|
140
|
+
.yarn-integrity
|
141
|
+
|
142
|
+
# Ignore uploaded files in development
|
143
|
+
/storage/*
|
144
|
+
!/storage/.keep
|
145
|
+
|
146
|
+
|
147
|
+
#### node ####
|
148
|
+
# Logs
|
149
|
+
logs
|
150
|
+
*.log
|
151
|
+
npm-debug.log*
|
152
|
+
yarn-debug.log*
|
153
|
+
yarn-error.log*
|
154
|
+
lerna-debug.log*
|
155
|
+
|
156
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
157
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
158
|
+
|
159
|
+
# Runtime data
|
160
|
+
pids
|
161
|
+
*.pid
|
162
|
+
*.seed
|
163
|
+
*.pid.lock
|
164
|
+
|
165
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
166
|
+
lib-cov
|
167
|
+
|
168
|
+
# Coverage directory used by tools like istanbul
|
169
|
+
coverage
|
170
|
+
*.lcov
|
171
|
+
|
172
|
+
# nyc test coverage
|
173
|
+
.nyc_output
|
174
|
+
|
175
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
176
|
+
.grunt
|
177
|
+
|
178
|
+
# Bower dependency directory (https://bower.io/)
|
179
|
+
bower_components
|
180
|
+
|
181
|
+
# node-waf configuration
|
182
|
+
.lock-wscript
|
183
|
+
|
184
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
185
|
+
build/Release
|
186
|
+
|
187
|
+
# Dependency directories
|
188
|
+
node_modules/
|
189
|
+
jspm_packages/
|
190
|
+
|
191
|
+
# TypeScript v1 declaration files
|
192
|
+
typings/
|
193
|
+
|
194
|
+
# TypeScript cache
|
195
|
+
*.tsbuildinfo
|
196
|
+
|
197
|
+
# Optional npm cache directory
|
198
|
+
.npm
|
199
|
+
|
200
|
+
# Optional eslint cache
|
201
|
+
.eslintcache
|
202
|
+
|
203
|
+
# Optional REPL history
|
204
|
+
.node_repl_history
|
205
|
+
|
206
|
+
# Output of 'npm pack'
|
207
|
+
*.tgz
|
208
|
+
|
209
|
+
# Yarn Integrity file
|
210
|
+
.yarn-integrity
|
211
|
+
|
212
|
+
# dotenv environment variables file
|
213
|
+
.env
|
214
|
+
.env.test
|
215
|
+
|
216
|
+
# parcel-bundler cache (https://parceljs.org/)
|
217
|
+
.cache
|
218
|
+
|
219
|
+
# next.js build output
|
220
|
+
.next
|
221
|
+
|
222
|
+
# nuxt.js build output
|
223
|
+
.nuxt
|
224
|
+
|
225
|
+
# vuepress build output
|
226
|
+
.vuepress/dist
|
227
|
+
|
228
|
+
# Serverless directories
|
229
|
+
.serverless/
|
230
|
+
|
231
|
+
# FuseBox cache
|
232
|
+
.fusebox/
|
233
|
+
|
234
|
+
# DynamoDB Local files
|
235
|
+
.dynamodb/
|
236
|
+
|
237
|
+
|
238
|
+
#### jetbrains ####
|
239
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
240
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
241
|
+
|
242
|
+
# User-specific stuff
|
243
|
+
.idea/**/workspace.xml
|
244
|
+
.idea/**/tasks.xml
|
245
|
+
.idea/**/usage.statistics.xml
|
246
|
+
.idea/**/dictionaries
|
247
|
+
.idea/**/shelf
|
248
|
+
|
249
|
+
# Generated files
|
250
|
+
.idea/**/contentModel.xml
|
251
|
+
|
252
|
+
# Sensitive or high-churn files
|
253
|
+
.idea/**/dataSources/
|
254
|
+
.idea/**/dataSources.ids
|
255
|
+
.idea/**/dataSources.local.xml
|
256
|
+
.idea/**/sqlDataSources.xml
|
257
|
+
.idea/**/dynamic.xml
|
258
|
+
.idea/**/uiDesigner.xml
|
259
|
+
.idea/**/dbnavigator.xml
|
260
|
+
|
261
|
+
# Gradle
|
262
|
+
.idea/**/gradle.xml
|
263
|
+
.idea/**/libraries
|
264
|
+
|
265
|
+
# Gradle and Maven with auto-import
|
266
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
267
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
268
|
+
# auto-import.
|
269
|
+
# .idea/modules.xml
|
270
|
+
# .idea/*.iml
|
271
|
+
# .idea/modules
|
272
|
+
# *.iml
|
273
|
+
# *.ipr
|
274
|
+
|
275
|
+
# CMake
|
276
|
+
cmake-build-*/
|
277
|
+
|
278
|
+
# Mongo Explorer plugin
|
279
|
+
.idea/**/mongoSettings.xml
|
280
|
+
|
281
|
+
# File-based project format
|
282
|
+
*.iws
|
283
|
+
|
284
|
+
# IntelliJ
|
285
|
+
out/
|
286
|
+
|
287
|
+
# mpeltonen/sbt-idea plugin
|
288
|
+
.idea_modules/
|
289
|
+
|
290
|
+
# JIRA plugin
|
291
|
+
atlassian-ide-plugin.xml
|
292
|
+
|
293
|
+
# Cursive Clojure plugin
|
294
|
+
.idea/replstate.xml
|
295
|
+
|
296
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
297
|
+
com_crashlytics_export_strings.xml
|
298
|
+
crashlytics.properties
|
299
|
+
crashlytics-build.properties
|
300
|
+
fabric.properties
|
301
|
+
|
302
|
+
# Editor-based Rest Client
|
303
|
+
.idea/httpRequests
|
304
|
+
|
305
|
+
# Android studio 3.1+ serialized cache file
|
306
|
+
.idea/caches/build_file_checksums.ser
|
307
|
+
|
308
|
+
|
309
|
+
#### emacs ####
|
310
|
+
# -*- mode: gitignore; -*-
|
311
|
+
*~
|
312
|
+
\#*\#
|
313
|
+
/.emacs.desktop
|
314
|
+
/.emacs.desktop.lock
|
315
|
+
*.elc
|
316
|
+
auto-save-list
|
317
|
+
tramp
|
318
|
+
.\#*
|
319
|
+
|
320
|
+
# Org-mode
|
321
|
+
.org-id-locations
|
322
|
+
*_archive
|
323
|
+
|
324
|
+
# flymake-mode
|
325
|
+
*_flymake.*
|
326
|
+
|
327
|
+
# eshell files
|
328
|
+
/eshell/history
|
329
|
+
/eshell/lastdir
|
330
|
+
|
331
|
+
# elpa packages
|
332
|
+
/elpa/
|
333
|
+
|
334
|
+
# reftex files
|
335
|
+
*.rel
|
336
|
+
|
337
|
+
# AUCTeX auto folder
|
338
|
+
/auto/
|
339
|
+
|
340
|
+
# cask packages
|
341
|
+
.cask/
|
342
|
+
dist/
|
343
|
+
|
344
|
+
# Flycheck
|
345
|
+
flycheck_*.el
|
346
|
+
|
347
|
+
# server auth directory
|
348
|
+
/server/
|
349
|
+
|
350
|
+
# projectiles files
|
351
|
+
.projectile
|
352
|
+
|
353
|
+
# directory configuration
|
354
|
+
.dir-locals.el
|
355
|
+
|
356
|
+
# network security
|
357
|
+
/network-security.data
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
#### macos ####
|
362
|
+
# General
|
363
|
+
.DS_Store
|
364
|
+
.AppleDouble
|
365
|
+
.LSOverride
|
366
|
+
|
367
|
+
# Icon must end with two \r
|
368
|
+
Icon
|
369
|
+
|
370
|
+
|
371
|
+
# Thumbnails
|
372
|
+
._*
|
373
|
+
|
374
|
+
# Files that might appear in the root of a volume
|
375
|
+
.DocumentRevisions-V100
|
376
|
+
.fseventsd
|
377
|
+
.Spotlight-V100
|
378
|
+
.TemporaryItems
|
379
|
+
.Trashes
|
380
|
+
.VolumeIcon.icns
|
381
|
+
.com.apple.timemachine.donotpresent
|
382
|
+
|
383
|
+
# Directories potentially created on remote AFP share
|
384
|
+
.AppleDB
|
385
|
+
.AppleDesktop
|
386
|
+
Network Trash Folder
|
387
|
+
Temporary Items
|
388
|
+
.apdisk
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
2
|
+
<profile version="1.0">
|
3
|
+
<option name="myName" value="Project Default" />
|
4
|
+
<inspection_tool class="ConvertOneChainedExprToSafeNavigation" enabled="true" level="INFORMATION" enabled_by_default="true" />
|
5
|
+
<inspection_tool class="GoNameStartsWithPackageName" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
6
|
+
<inspection_tool class="GoSnakeCaseUsage" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
7
|
+
<inspection_tool class="GoUnusedGlobalVariable" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
8
|
+
<inspection_tool class="GoUnusedVariable" enabled="true" level="WARNING" enabled_by_default="true" />
|
9
|
+
<inspection_tool class="GrazieInspection" enabled="false" level="TYPO" enabled_by_default="false" />
|
10
|
+
<inspection_tool class="LanguageDetectionInspection" enabled="false" level="WARNING" enabled_by_default="false" />
|
11
|
+
<inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
|
12
|
+
<inspection_tool class="RubyCaseWithoutElseBlockInspection" enabled="false" level="WARNING" enabled_by_default="false" />
|
13
|
+
<inspection_tool class="RubyStringKeysInHashInspection" enabled="true" level="INFORMATION" enabled_by_default="true" />
|
14
|
+
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
15
|
+
<option name="processCode" value="true" />
|
16
|
+
<option name="processLiterals" value="true" />
|
17
|
+
<option name="processComments" value="true" />
|
18
|
+
</inspection_tool>
|
19
|
+
</profile>
|
20
|
+
</component>
|
data/.idea/marc.iml
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<shared />
|
5
|
+
</component>
|
6
|
+
<component name="NewModuleRootManager">
|
7
|
+
<content url="file://$MODULE_DIR$">
|
8
|
+
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
9
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
10
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
11
|
+
<excludeFolder url="file://$MODULE_DIR$/artifacts" />
|
12
|
+
</content>
|
13
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.7.3" jdkType="RUBY_SDK" />
|
14
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.7.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-2.7.3) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, RVM: ruby-2.7.3) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundle-audit (v0.1.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.14, RVM: ruby-2.7.3) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler-audit (v0.8.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="ci_reporter (v2.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="ci_reporter_rspec (v1.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="crack (v0.4.5, RVM: ruby-2.7.3) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.4.4, RVM: ruby-2.7.3) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="docile (v1.4.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="dotenv (v2.7.6, RVM: ruby-2.7.3) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="ffi (v1.15.3, RVM: ruby-2.7.3) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="hashdiff (v1.0.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="listen (v3.1.5, RVM: ruby-2.7.3) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="marc (v1.0.4, RVM: ruby-2.7.3) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.20.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="parser (v3.0.2.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="parslet (v2.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v4.0.6, RVM: ruby-2.7.3) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-2.7.3) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.11.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.1.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-2.7.3) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.10.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.10.2, RVM: ruby-2.7.3) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.10.2, RVM: ruby-2.7.3) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop (v1.11.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.5.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-rake (v0.5.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-rspec (v2.3.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-prof (v0.17.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby_dep (v1.5.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="scrub_rb (v1.0.1, RVM: ruby-2.7.3) [gem]" level="application" />
|
55
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.21.2, RVM: ruby-2.7.3) [gem]" level="application" />
|
56
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.12.3, RVM: ruby-2.7.3) [gem]" level="application" />
|
57
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-rcov (v0.2.3, RVM: ruby-2.7.3) [gem]" level="application" />
|
58
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov_json_formatter (v0.1.3, RVM: ruby-2.7.3) [gem]" level="application" />
|
59
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v1.1.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
60
|
+
<orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
|
61
|
+
<orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.7.7, RVM: ruby-2.7.3) [gem]" level="application" />
|
62
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
|
63
|
+
<orderEntry type="library" scope="PROVIDED" name="webmock (v3.12.2, RVM: ruby-2.7.3) [gem]" level="application" />
|
64
|
+
</component>
|
65
|
+
<component name="RakeTasksCache">
|
66
|
+
<option name="myRootTask">
|
67
|
+
<RakeTaskImpl id="rake">
|
68
|
+
<subtasks>
|
69
|
+
<RakeTaskImpl id="bundle">
|
70
|
+
<subtasks>
|
71
|
+
<RakeTaskImpl description="Updates the ruby-advisory-db then runs bundle-audit" fullCommand="bundle:audit" id="audit" />
|
72
|
+
</subtasks>
|
73
|
+
</RakeTaskImpl>
|
74
|
+
<RakeTaskImpl description="Run all specs in spec directory, with coverage" fullCommand="coverage" id="coverage" />
|
75
|
+
<RakeTaskImpl description="Run tests, check test coverage, check code style, check for vulnerabilities, build gem" fullCommand="default" id="default" />
|
76
|
+
<RakeTaskImpl description="Build berkeley_library-marc.gemspec as berkeley_library-marc-0.2.0.gem" fullCommand="gem" id="gem" />
|
77
|
+
<RakeTaskImpl description="Run RuboCop with auto-correct, and output results to console" fullCommand="ra" id="ra" />
|
78
|
+
<RakeTaskImpl description="Run rubocop with HTML output" fullCommand="rubocop" id="rubocop" />
|
79
|
+
<RakeTaskImpl id="rubocop">
|
80
|
+
<subtasks>
|
81
|
+
<RakeTaskImpl description="Auto-correct RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
|
82
|
+
</subtasks>
|
83
|
+
</RakeTaskImpl>
|
84
|
+
<RakeTaskImpl description="Run RSpec code examples" fullCommand="spec" id="spec" />
|
85
|
+
<RakeTaskImpl id="ci">
|
86
|
+
<subtasks>
|
87
|
+
<RakeTaskImpl id="setup">
|
88
|
+
<subtasks>
|
89
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:rspec" id="rspec" />
|
90
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:rspecbase" id="rspecbase" />
|
91
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:rspecdoc" id="rspecdoc" />
|
92
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:spec_report_cleanup" id="spec_report_cleanup" />
|
93
|
+
</subtasks>
|
94
|
+
</RakeTaskImpl>
|
95
|
+
</subtasks>
|
96
|
+
</RakeTaskImpl>
|
97
|
+
</subtasks>
|
98
|
+
</RakeTaskImpl>
|
99
|
+
</option>
|
100
|
+
</component>
|
101
|
+
</module>
|