ruby-marc-spec 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +18 -0
  3. data/.gitignore +388 -0
  4. data/.gitmodules +3 -0
  5. data/.idea/codeStyles/codeStyleConfig.xml +5 -0
  6. data/.idea/go.imports.xml +6 -0
  7. data/.idea/inspectionProfiles/Project_Default.xml +23 -0
  8. data/.idea/marc_spec.iml +102 -0
  9. data/.idea/misc.xml +6 -0
  10. data/.idea/modules.xml +8 -0
  11. data/.idea/templateLanguages.xml +6 -0
  12. data/.idea/vcs.xml +7 -0
  13. data/.rubocop.yml +269 -0
  14. data/.ruby-version +1 -0
  15. data/.simplecov +8 -0
  16. data/CHANGES.md +3 -0
  17. data/Gemfile +6 -0
  18. data/LICENSE.md +21 -0
  19. data/README.md +172 -0
  20. data/Rakefile +20 -0
  21. data/lib/.rubocop.yml +5 -0
  22. data/lib/marc/spec/module_info.rb +14 -0
  23. data/lib/marc/spec/parsing/closed_int_range.rb +28 -0
  24. data/lib/marc/spec/parsing/closed_lc_alpha_range.rb +28 -0
  25. data/lib/marc/spec/parsing/parser.rb +213 -0
  26. data/lib/marc/spec/parsing.rb +1 -0
  27. data/lib/marc/spec/queries/al_num_range.rb +105 -0
  28. data/lib/marc/spec/queries/applicable.rb +18 -0
  29. data/lib/marc/spec/queries/character_spec.rb +81 -0
  30. data/lib/marc/spec/queries/comparison_string.rb +45 -0
  31. data/lib/marc/spec/queries/condition.rb +133 -0
  32. data/lib/marc/spec/queries/condition_context.rb +49 -0
  33. data/lib/marc/spec/queries/dsl.rb +80 -0
  34. data/lib/marc/spec/queries/indicator_value.rb +77 -0
  35. data/lib/marc/spec/queries/operator.rb +129 -0
  36. data/lib/marc/spec/queries/part.rb +63 -0
  37. data/lib/marc/spec/queries/position.rb +59 -0
  38. data/lib/marc/spec/queries/position_or_range.rb +27 -0
  39. data/lib/marc/spec/queries/query.rb +94 -0
  40. data/lib/marc/spec/queries/query_executor.rb +52 -0
  41. data/lib/marc/spec/queries/selector.rb +12 -0
  42. data/lib/marc/spec/queries/subfield.rb +88 -0
  43. data/lib/marc/spec/queries/subfield_value.rb +63 -0
  44. data/lib/marc/spec/queries/tag.rb +107 -0
  45. data/lib/marc/spec/queries/transform.rb +154 -0
  46. data/lib/marc/spec/queries.rb +1 -0
  47. data/lib/marc/spec.rb +32 -0
  48. data/rakelib/.rubocop.yml +19 -0
  49. data/rakelib/bundle.rake +8 -0
  50. data/rakelib/coverage.rake +11 -0
  51. data/rakelib/gem.rake +54 -0
  52. data/rakelib/parser_specs/formatter.rb +31 -0
  53. data/rakelib/parser_specs/parser_specs.rb.txt.erb +35 -0
  54. data/rakelib/parser_specs/rule.rb +95 -0
  55. data/rakelib/parser_specs/suite.rb +91 -0
  56. data/rakelib/parser_specs/test.rb +97 -0
  57. data/rakelib/parser_specs.rb +1 -0
  58. data/rakelib/rubocop.rake +18 -0
  59. data/rakelib/spec.rake +27 -0
  60. data/ruby-marc-spec.gemspec +42 -0
  61. data/spec/.rubocop.yml +46 -0
  62. data/spec/README.md +16 -0
  63. data/spec/data/b23161018-sru.xml +182 -0
  64. data/spec/data/sandburg.xml +82 -0
  65. data/spec/generated/char_indicator_spec.rb +174 -0
  66. data/spec/generated/char_spec.rb +113 -0
  67. data/spec/generated/comparison_string_spec.rb +74 -0
  68. data/spec/generated/field_tag_spec.rb +156 -0
  69. data/spec/generated/index_char_spec.rb +669 -0
  70. data/spec/generated/index_indicator_spec.rb +174 -0
  71. data/spec/generated/index_spec.rb +113 -0
  72. data/spec/generated/index_sub_spec_spec.rb +1087 -0
  73. data/spec/generated/indicators_spec.rb +75 -0
  74. data/spec/generated/position_or_range_spec.rb +110 -0
  75. data/spec/generated/sub_spec_spec.rb +208 -0
  76. data/spec/generated/sub_spec_sub_spec_spec.rb +1829 -0
  77. data/spec/generated/subfield_char_spec.rb +405 -0
  78. data/spec/generated/subfield_range_range_spec.rb +48 -0
  79. data/spec/generated/subfield_range_spec.rb +87 -0
  80. data/spec/generated/subfield_range_sub_spec_spec.rb +214 -0
  81. data/spec/generated/subfield_tag_range_spec.rb +477 -0
  82. data/spec/generated/subfield_tag_sub_spec_spec.rb +3216 -0
  83. data/spec/generated/subfield_tag_tag_spec.rb +5592 -0
  84. data/spec/marc/spec/parsing/closed_int_range_spec.rb +49 -0
  85. data/spec/marc/spec/parsing/closed_lc_alpha_range_spec.rb +49 -0
  86. data/spec/marc/spec/parsing/parser_spec.rb +545 -0
  87. data/spec/marc/spec/queries/al_num_range_spec.rb +114 -0
  88. data/spec/marc/spec/queries/character_spec_spec.rb +28 -0
  89. data/spec/marc/spec/queries/comparison_string_spec.rb +28 -0
  90. data/spec/marc/spec/queries/indicator_value_spec.rb +28 -0
  91. data/spec/marc/spec/queries/query_spec.rb +200 -0
  92. data/spec/marc/spec/queries/subfield_spec.rb +92 -0
  93. data/spec/marc/spec/queries/subfield_value_spec.rb +31 -0
  94. data/spec/marc/spec/queries/tag_spec.rb +144 -0
  95. data/spec/marc/spec/queries/transform_spec.rb +459 -0
  96. data/spec/marc_spec_spec.rb +247 -0
  97. data/spec/scratch_spec.rb +112 -0
  98. data/spec/spec_helper.rb +23 -0
  99. metadata +341 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f746cbe6bce86ac23cfc75c9b01c96c7127788af8ddffa81fa8e720bc015e3bd
4
+ data.tar.gz: ff794cf138047fc798728671174c916069dba82da231cc0f306519cfba982772
5
+ SHA512:
6
+ metadata.gz: 328630cb81f72b2653b6bae02a16a957b0a1eeb55ae9be7b74eb79c68225046db0a937dbf09ebcf82f4529346849e5736462e1afc6c52b889ec32adec214e29c
7
+ data.tar.gz: 6364636fdc30a08461f9636dd9cf99027f161a953487b64053a0c0a93feffc78236bc003f2973233a58d8947220d9bc1b1e694b08f9ef1b75b380cb17bc383ad
@@ -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: [ '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
data/.gitmodules ADDED
@@ -0,0 +1,3 @@
1
+ [submodule "spec/suite"]
2
+ path = spec/suite
3
+ url = https://github.com/MARCspec/MARCspec-Test-Suite
@@ -0,0 +1,5 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <state>
3
+ <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="GoImports">
4
+ <option name="optimizeImportsOnTheFly" value="false" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,23 @@
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="RubyClassModuleNamingConvention" enabled="false" level="WARNING" enabled_by_default="false" />
14
+ <inspection_tool class="RubyInstanceMethodNamingConvention" enabled="false" level="WARNING" enabled_by_default="false" />
15
+ <inspection_tool class="RubyNilAnalysis" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
16
+ <inspection_tool class="RubyStringKeysInHashInspection" enabled="true" level="INFORMATION" enabled_by_default="true" />
17
+ <inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
18
+ <option name="processCode" value="true" />
19
+ <option name="processLiterals" value="true" />
20
+ <option name="processComments" value="true" />
21
+ </inspection_tool>
22
+ </profile>
23
+ </component>
@@ -0,0 +1,102 @@
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" inherit-compiler-output="true">
7
+ <exclude-output />
8
+ <content url="file://$MODULE_DIR$" />
9
+ <orderEntry type="jdk" jdkName="RVM: ruby-2.7.4" jdkType="RUBY_SDK" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-2.7.4) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, RVM: ruby-2.7.4) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="bundle-audit (v0.1.0, RVM: ruby-2.7.4) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.14, RVM: ruby-2.7.4) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="bundler-audit (v0.9.0.1, RVM: ruby-2.7.4) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="ci_reporter (v2.0.0, RVM: ruby-2.7.4) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="ci_reporter_rspec (v1.0.0, RVM: ruby-2.7.4) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-2.7.4) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.4.4, RVM: ruby-2.7.4) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="docile (v1.4.0, RVM: ruby-2.7.4) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="dotenv (v2.7.6, RVM: ruby-2.7.4) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.15.4, RVM: ruby-2.7.4) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="io-console (v0.5.9, RVM: ruby-2.7.4) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="irb (v1.3.7, RVM: ruby-2.7.4) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="json (v2.5.1, RVM: ruby-2.7.4) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="listen (v3.1.5, RVM: ruby-2.7.4) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="marc (v1.1.1@335a02, RVM: ruby-2.7.4) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="parallel (v1.21.0, RVM: ruby-2.7.4) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="parser (v3.0.2.0, RVM: ruby-2.7.4) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="parslet (v2.0.0, RVM: ruby-2.7.4) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.0.0, RVM: ruby-2.7.4) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-2.7.4) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.11.0, RVM: ruby-2.7.4) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.10.1, RVM: ruby-2.7.4) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.1.1, RVM: ruby-2.7.4) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="reline (v0.2.7, RVM: ruby-2.7.4) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-2.7.4) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="rspec (v3.10.0, RVM: ruby-2.7.4) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.10.1, RVM: ruby-2.7.4) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.10.1, RVM: ruby-2.7.4) [gem]" level="application" />
41
+ <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.10.2, RVM: ruby-2.7.4) [gem]" level="application" />
42
+ <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.10.2, RVM: ruby-2.7.4) [gem]" level="application" />
43
+ <orderEntry type="library" scope="PROVIDED" name="rubocop (v0.91.1, RVM: ruby-2.7.4) [gem]" level="application" />
44
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v0.8.0, RVM: ruby-2.7.4) [gem]" level="application" />
45
+ <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-2.7.4) [gem]" level="application" />
46
+ <orderEntry type="library" scope="PROVIDED" name="ruby_dep (v1.5.0, RVM: ruby-2.7.4) [gem]" level="application" />
47
+ <orderEntry type="library" scope="PROVIDED" name="scrub_rb (v1.0.1, RVM: ruby-2.7.4) [gem]" level="application" />
48
+ <orderEntry type="library" scope="PROVIDED" name="simplecov (v0.16.1, RVM: ruby-2.7.4) [gem]" level="application" />
49
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.10.2, RVM: ruby-2.7.4) [gem]" level="application" />
50
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-rcov (v0.2.3, RVM: ruby-2.7.4) [gem]" level="application" />
51
+ <orderEntry type="library" scope="PROVIDED" name="thor (v1.1.0, RVM: ruby-2.7.4) [gem]" level="application" />
52
+ <orderEntry type="library" scope="PROVIDED" name="typesafe_enum (v0.3.0, RVM: ruby-2.7.4) [gem]" level="application" />
53
+ <orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, RVM: ruby-2.7.4) [gem]" level="application" />
54
+ <orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.8, RVM: ruby-2.7.4) [gem]" level="application" />
55
+ <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.8.0, RVM: ruby-2.7.4) [gem]" level="application" />
56
+ </component>
57
+ <component name="RModuleSettingsStorage">
58
+ <LOAD_PATH number="2" string0="$MODULE_DIR$/lib" string1="$MODULE_DIR$/spec" />
59
+ <I18N_FOLDERS number="0" />
60
+ </component>
61
+ <component name="RakeTasksCache">
62
+ <option name="myRootTask">
63
+ <RakeTaskImpl id="rake">
64
+ <subtasks>
65
+ <RakeTaskImpl id="bundle">
66
+ <subtasks>
67
+ <RakeTaskImpl description="Updates the ruby-advisory-db then runs bundle-audit" fullCommand="bundle:audit" id="audit" />
68
+ </subtasks>
69
+ </RakeTaskImpl>
70
+ <RakeTaskImpl description="Run all specs in spec directory, with coverage" fullCommand="coverage" id="coverage" />
71
+ <RakeTaskImpl description="Run tests, check test coverage, check code style" fullCommand="default" id="default" />
72
+ <RakeTaskImpl description="Build marc-spec.gemspec as marc-spec-0.1.0.gem" fullCommand="gem" id="gem" />
73
+ <RakeTaskImpl description="Run RuboCop with auto-correct, and output results to console" fullCommand="ra" id="ra" />
74
+ <RakeTaskImpl description="Run rubocop with HTML output" fullCommand="rubocop" id="rubocop" />
75
+ <RakeTaskImpl id="rubocop">
76
+ <subtasks>
77
+ <RakeTaskImpl description="Auto-correct RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
78
+ </subtasks>
79
+ </RakeTaskImpl>
80
+ <RakeTaskImpl description="Run RSpec code examples" fullCommand="spec" id="spec" />
81
+ <RakeTaskImpl id="spec">
82
+ <subtasks>
83
+ <RakeTaskImpl description="regenerates spec/generated from MARCSpec-Test-Suite" fullCommand="spec:generate" id="generate" />
84
+ </subtasks>
85
+ </RakeTaskImpl>
86
+ <RakeTaskImpl id="ci">
87
+ <subtasks>
88
+ <RakeTaskImpl id="setup">
89
+ <subtasks>
90
+ <RakeTaskImpl description="" fullCommand="ci:setup:rspec" id="rspec" />
91
+ <RakeTaskImpl description="" fullCommand="ci:setup:rspecbase" id="rspecbase" />
92
+ <RakeTaskImpl description="" fullCommand="ci:setup:rspecdoc" id="rspecdoc" />
93
+ <RakeTaskImpl description="" fullCommand="ci:setup:spec_report_cleanup" id="spec_report_cleanup" />
94
+ </subtasks>
95
+ </RakeTaskImpl>
96
+ </subtasks>
97
+ </RakeTaskImpl>
98
+ </subtasks>
99
+ </RakeTaskImpl>
100
+ </option>
101
+ </component>
102
+ </module>
data/.idea/misc.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.7.2" project-jdk-type="RUBY_SDK">
4
+ <output url="file://$PROJECT_DIR$/out" />
5
+ </component>
6
+ </project>
data/.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/marc_spec.iml" filepath="$PROJECT_DIR$/.idea/marc_spec.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="TemplateDataLanguageMappings">
4
+ <file url="PROJECT" dialect="ruby" />
5
+ </component>
6
+ </project>
data/.idea/vcs.xml ADDED
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ <mapping directory="$PROJECT_DIR$/spec/suite" vcs="Git" />
6
+ </component>
7
+ </project>