berkeley_library-logging 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +388 -0
  3. data/.idea/inspectionProfiles/Project_Default.xml +17 -0
  4. data/.idea/logging.iml +139 -0
  5. data/.idea/modules.xml +8 -0
  6. data/.idea/vcs.xml +6 -0
  7. data/.rubocop.yml +271 -0
  8. data/.ruby-version +1 -0
  9. data/.simplecov +4 -0
  10. data/.travis.yml +9 -0
  11. data/CHANGES.md +12 -0
  12. data/Dockerfile +57 -0
  13. data/Gemfile +3 -0
  14. data/Jenkinsfile +21 -0
  15. data/LICENSE.md +21 -0
  16. data/README.md +47 -0
  17. data/Rakefile +31 -0
  18. data/berkeley_library-logging.gemspec +47 -0
  19. data/docker-compose.yml +15 -0
  20. data/lib/berkeley_library/logging.rb +38 -0
  21. data/lib/berkeley_library/logging/configurator.rb +41 -0
  22. data/lib/berkeley_library/logging/env.rb +38 -0
  23. data/lib/berkeley_library/logging/events.rb +39 -0
  24. data/lib/berkeley_library/logging/formatters.rb +54 -0
  25. data/lib/berkeley_library/logging/logger.rb +12 -0
  26. data/lib/berkeley_library/logging/loggers.rb +79 -0
  27. data/lib/berkeley_library/logging/module_info.rb +16 -0
  28. data/lib/berkeley_library/logging/railtie.rb +15 -0
  29. data/lib/berkeley_library/logging/tagged_logging_extensions.rb +21 -0
  30. data/rakelib/.rubocop.yml +4 -0
  31. data/rakelib/bundle.rake +8 -0
  32. data/rakelib/coverage.rake +36 -0
  33. data/rakelib/gem.rake +56 -0
  34. data/rakelib/rubocop.rake +14 -0
  35. data/rakelib/spec.rake +31 -0
  36. data/spec/.rubocop.yml +27 -0
  37. data/spec/rails/ucblit/logging/configurator_spec.rb +101 -0
  38. data/spec/rails/ucblit/logging/env_spec.rb +25 -0
  39. data/spec/rails/ucblit/logging/formatters_spec.rb +44 -0
  40. data/spec/rails/ucblit/logging/loggers_spec.rb +117 -0
  41. data/spec/rails/ucblit/logging/railtie_spec.rb +46 -0
  42. data/spec/rails/ucblit/logging_spec.rb +132 -0
  43. data/spec/rails_helper.rb +15 -0
  44. data/spec/spec_helper.rb +34 -0
  45. data/spec/standalone/ucblit/logging/configurator_spec.rb +103 -0
  46. data/spec/standalone/ucblit/logging/formatters_spec.rb +44 -0
  47. data/spec/standalone/ucblit/logging/loggers_spec.rb +278 -0
  48. data/spec/standalone/ucblit/logging_spec.rb +133 -0
  49. data/spec/standalone_helper.rb +25 -0
  50. metadata +363 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 55747e6057035bf2f9f2d078ba3f66a6c0456891d7bde0fc019898ee28582ac1
4
+ data.tar.gz: c8c9f150c6278fa08b239fc1ace35211d09e1b33bc85a172e6025ae5e18d4756
5
+ SHA512:
6
+ metadata.gz: c72ac07ab71e93d87bbc6dc2479a243e1fb17f68a9eb373112d99b59587c35fd81b42c259f79f519c016a0abe0700c9c13d19c249e14d730b33216548c5168e3
7
+ data.tar.gz: 05dbcb9d79db5886f908d3f3965c4c303f9dd04a382feb6ce38bdc2557ec5d25f27f3ce945129cf88f95eebf9ab9239f0ee2b0658ee832a93de58decb2af4c5c
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,17 @@
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="GrazieInspection" enabled="false" level="TYPO" enabled_by_default="false" />
6
+ <inspection_tool class="LanguageDetectionInspection" enabled="false" level="WARNING" enabled_by_default="false" />
7
+ <inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
8
+ <inspection_tool class="RubyCaseWithoutElseBlockInspection" enabled="false" level="WARNING" enabled_by_default="false" />
9
+ <inspection_tool class="RubyNilAnalysis" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
10
+ <inspection_tool class="RubyStringKeysInHashInspection" enabled="true" level="INFORMATION" enabled_by_default="true" />
11
+ <inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
12
+ <option name="processCode" value="true" />
13
+ <option name="processLiterals" value="true" />
14
+ <option name="processComments" value="true" />
15
+ </inspection_tool>
16
+ </profile>
17
+ </component>
data/.idea/logging.iml ADDED
@@ -0,0 +1,139 @@
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
+ </content>
12
+ <orderEntry type="jdk" jdkName="RVM: ruby-2.7.3" jdkType="RUBY_SDK" />
13
+ <orderEntry type="sourceFolder" forTests="false" />
14
+ <orderEntry type="library" scope="PROVIDED" name="actioncable (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="actionmailbox (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="actionmailer (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="actionpack (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="actiontext (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="actionview (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="activejob (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="activemodel (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="activerecord (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="activestorage (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="activesupport (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="amazing_print (v1.3.0, RVM: ruby-2.7.3) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="ansi (v1.5.0, RVM: ruby-2.7.3) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-2.7.3) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="brakeman (v4.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, RVM: ruby-2.7.3) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="bundle-audit (v0.1.0, RVM: ruby-2.7.3) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.14, RVM: ruby-2.7.3) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="bundler-audit (v0.8.0, RVM: ruby-2.7.3) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="ci_reporter (v2.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="ci_reporter_rspec (v1.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-2.7.3) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.9, RVM: ruby-2.7.3) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="crass (v1.0.6, RVM: ruby-2.7.3) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.4.4, RVM: ruby-2.7.3) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="docile (v1.4.0, RVM: ruby-2.7.3) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="dotenv (v2.7.6, RVM: ruby-2.7.3) [gem]" level="application" />
41
+ <orderEntry type="library" scope="PROVIDED" name="erubi (v1.10.0, RVM: ruby-2.7.3) [gem]" level="application" />
42
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.15.3, RVM: ruby-2.7.3) [gem]" level="application" />
43
+ <orderEntry type="library" scope="PROVIDED" name="globalid (v0.5.2, RVM: ruby-2.7.3) [gem]" level="application" />
44
+ <orderEntry type="library" scope="PROVIDED" name="i18n (v1.8.10, RVM: ruby-2.7.3) [gem]" level="application" />
45
+ <orderEntry type="library" scope="PROVIDED" name="io-console (v0.5.9, RVM: ruby-2.7.3) [gem]" level="application" />
46
+ <orderEntry type="library" scope="PROVIDED" name="irb (v1.3.7, RVM: ruby-2.7.3) [gem]" level="application" />
47
+ <orderEntry type="library" scope="PROVIDED" name="listen (v3.1.5, RVM: ruby-2.7.3) [gem]" level="application" />
48
+ <orderEntry type="library" scope="PROVIDED" name="lograge (v0.11.2, RVM: ruby-2.7.3) [gem]" level="application" />
49
+ <orderEntry type="library" scope="PROVIDED" name="loofah (v2.12.0, RVM: ruby-2.7.3) [gem]" level="application" />
50
+ <orderEntry type="library" scope="PROVIDED" name="mail (v2.7.1, RVM: ruby-2.7.3) [gem]" level="application" />
51
+ <orderEntry type="library" scope="PROVIDED" name="marcel (v1.0.1, RVM: ruby-2.7.3) [gem]" level="application" />
52
+ <orderEntry type="library" scope="PROVIDED" name="method_source (v1.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
53
+ <orderEntry type="library" scope="PROVIDED" name="mini_mime (v1.1.0, RVM: ruby-2.7.3) [gem]" level="application" />
54
+ <orderEntry type="library" scope="PROVIDED" name="minitest (v5.14.4, RVM: ruby-2.7.3) [gem]" level="application" />
55
+ <orderEntry type="library" scope="PROVIDED" name="nio4r (v2.5.8, RVM: ruby-2.7.3) [gem]" level="application" />
56
+ <orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.12.3, RVM: ruby-2.7.3) [gem]" level="application" />
57
+ <orderEntry type="library" scope="PROVIDED" name="oj (v3.13.2, RVM: ruby-2.7.3) [gem]" level="application" />
58
+ <orderEntry type="library" scope="PROVIDED" name="ougai (v1.9.1, RVM: ruby-2.7.3) [gem]" level="application" />
59
+ <orderEntry type="library" scope="PROVIDED" name="parallel (v1.20.1, RVM: ruby-2.7.3) [gem]" level="application" />
60
+ <orderEntry type="library" scope="PROVIDED" name="parser (v3.0.2.0, RVM: ruby-2.7.3) [gem]" level="application" />
61
+ <orderEntry type="library" scope="PROVIDED" name="racc (v1.5.2, RVM: ruby-2.7.3) [gem]" level="application" />
62
+ <orderEntry type="library" scope="PROVIDED" name="rack (v2.2.3, RVM: ruby-2.7.3) [gem]" level="application" />
63
+ <orderEntry type="library" scope="PROVIDED" name="rack-test (v1.1.0, RVM: ruby-2.7.3) [gem]" level="application" />
64
+ <orderEntry type="library" scope="PROVIDED" name="rails (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
65
+ <orderEntry type="library" scope="PROVIDED" name="rails-dom-testing (v2.0.3, RVM: ruby-2.7.3) [gem]" level="application" />
66
+ <orderEntry type="library" scope="PROVIDED" name="rails-html-sanitizer (v1.4.1, RVM: ruby-2.7.3) [gem]" level="application" />
67
+ <orderEntry type="library" scope="PROVIDED" name="railties (v6.1.4, RVM: ruby-2.7.3) [gem]" level="application" />
68
+ <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.0.0, RVM: ruby-2.7.3) [gem]" level="application" />
69
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-2.7.3) [gem]" level="application" />
70
+ <orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.11.0, RVM: ruby-2.7.3) [gem]" level="application" />
71
+ <orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
72
+ <orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.1.1, RVM: ruby-2.7.3) [gem]" level="application" />
73
+ <orderEntry type="library" scope="PROVIDED" name="reline (v0.2.7, RVM: ruby-2.7.3) [gem]" level="application" />
74
+ <orderEntry type="library" scope="PROVIDED" name="request_store (v1.5.0, RVM: ruby-2.7.3) [gem]" level="application" />
75
+ <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-2.7.3) [gem]" level="application" />
76
+ <orderEntry type="library" scope="PROVIDED" name="rspec (v3.10.0, RVM: ruby-2.7.3) [gem]" level="application" />
77
+ <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
78
+ <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.10.1, RVM: ruby-2.7.3) [gem]" level="application" />
79
+ <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.10.2, RVM: ruby-2.7.3) [gem]" level="application" />
80
+ <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.10.2, RVM: ruby-2.7.3) [gem]" level="application" />
81
+ <orderEntry type="library" scope="PROVIDED" name="rubocop (v0.91.1, RVM: ruby-2.7.3) [gem]" level="application" />
82
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v0.8.0, RVM: ruby-2.7.3) [gem]" level="application" />
83
+ <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-2.7.3) [gem]" level="application" />
84
+ <orderEntry type="library" scope="PROVIDED" name="ruby_dep (v1.5.0, RVM: ruby-2.7.3) [gem]" level="application" />
85
+ <orderEntry type="library" scope="PROVIDED" name="simplecov (v0.21.2, RVM: ruby-2.7.3) [gem]" level="application" />
86
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-console (v0.9.1, RVM: ruby-2.7.3) [gem]" level="application" />
87
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.12.3, RVM: ruby-2.7.3) [gem]" level="application" />
88
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-rcov (v0.2.3, RVM: ruby-2.7.3) [gem]" level="application" />
89
+ <orderEntry type="library" scope="PROVIDED" name="simplecov_json_formatter (v0.1.3, RVM: ruby-2.7.3) [gem]" level="application" />
90
+ <orderEntry type="library" scope="PROVIDED" name="sprockets (v4.0.2, RVM: ruby-2.7.3) [gem]" level="application" />
91
+ <orderEntry type="library" scope="PROVIDED" name="sprockets-rails (v3.2.2, RVM: ruby-2.7.3) [gem]" level="application" />
92
+ <orderEntry type="library" scope="PROVIDED" name="terminal-table (v3.0.1, RVM: ruby-2.7.3) [gem]" level="application" />
93
+ <orderEntry type="library" scope="PROVIDED" name="thor (v1.1.0, RVM: ruby-2.7.3) [gem]" level="application" />
94
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo (v2.0.4, RVM: ruby-2.7.3) [gem]" level="application" />
95
+ <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.7.0, RVM: ruby-2.7.3) [gem]" level="application" />
96
+ <orderEntry type="library" scope="PROVIDED" name="websocket-driver (v0.7.5, RVM: ruby-2.7.3) [gem]" level="application" />
97
+ <orderEntry type="library" scope="PROVIDED" name="websocket-extensions (v0.1.5, RVM: ruby-2.7.3) [gem]" level="application" />
98
+ <orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.4.2, RVM: ruby-2.7.3) [gem]" level="application" />
99
+ </component>
100
+ <component name="RakeTasksCache">
101
+ <option name="myRootTask">
102
+ <RakeTaskImpl id="rake">
103
+ <subtasks>
104
+ <RakeTaskImpl id="bundle">
105
+ <subtasks>
106
+ <RakeTaskImpl description="Check bundled gems for vulnerabilities against the latest ruby-advisory-db" fullCommand="bundle:audit" id="audit" />
107
+ </subtasks>
108
+ </RakeTaskImpl>
109
+ <RakeTaskImpl description="Check test coverage, check code style, check gems for vulnerabilities" fullCommand="check" id="check" />
110
+ <RakeTaskImpl description="Remove artifacts directory" fullCommand="clean" id="clean" />
111
+ <RakeTaskImpl description="Run all specs in spec directory, with coverage" fullCommand="coverage" id="coverage" />
112
+ <RakeTaskImpl description="Clean, check, build gem" fullCommand="default" id="default" />
113
+ <RakeTaskImpl description="Build berkeley_library-logging.gemspec as berkeley_library-logging-0.2.0.gem" fullCommand="gem" id="gem" />
114
+ <RakeTaskImpl description="Run RuboCop" fullCommand="rubocop" id="rubocop" />
115
+ <RakeTaskImpl id="rubocop">
116
+ <subtasks>
117
+ <RakeTaskImpl description="Auto-correct RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
118
+ </subtasks>
119
+ </RakeTaskImpl>
120
+ <RakeTaskImpl description="Run all specs in spec directory" fullCommand="spec" id="spec" />
121
+ <RakeTaskImpl id="spec">
122
+ <subtasks>
123
+ <RakeTaskImpl description="Run specs in spec/rails directory" fullCommand="spec:rails" id="rails" />
124
+ <RakeTaskImpl description="Run specs in spec/standalone directory" fullCommand="spec:standalone" id="standalone" />
125
+ <RakeTaskImpl description="" fullCommand="spec:all" id="all" />
126
+ <RakeTaskImpl description="" fullCommand="spec:prepare" id="prepare" />
127
+ </subtasks>
128
+ </RakeTaskImpl>
129
+ <RakeTaskImpl id="simplecov">
130
+ <subtasks>
131
+ <RakeTaskImpl description="" fullCommand="simplecov:check_coverage" id="check_coverage" />
132
+ <RakeTaskImpl description="" fullCommand="simplecov:report" id="report" />
133
+ </subtasks>
134
+ </RakeTaskImpl>
135
+ </subtasks>
136
+ </RakeTaskImpl>
137
+ </option>
138
+ </component>
139
+ </module>