berkeley_library-tind 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +18 -0
  3. data/.gitignore +388 -0
  4. data/.idea/inspectionProfiles/Project_Default.xml +20 -0
  5. data/.idea/misc.xml +4 -0
  6. data/.idea/modules.xml +8 -0
  7. data/.idea/tind.iml +138 -0
  8. data/.idea/vcs.xml +6 -0
  9. data/.rubocop.yml +334 -0
  10. data/.ruby-version +1 -0
  11. data/.simplecov +8 -0
  12. data/.yardopts +1 -0
  13. data/CHANGES.md +58 -0
  14. data/Dockerfile +57 -0
  15. data/Gemfile +3 -0
  16. data/Jenkinsfile +18 -0
  17. data/LICENSE.md +21 -0
  18. data/README.md +73 -0
  19. data/Rakefile +20 -0
  20. data/berkeley_library-tind.gemspec +50 -0
  21. data/bin/tind-export +14 -0
  22. data/docker-compose.yml +15 -0
  23. data/lib/berkeley_library/tind.rb +3 -0
  24. data/lib/berkeley_library/tind/api.rb +1 -0
  25. data/lib/berkeley_library/tind/api/api.rb +132 -0
  26. data/lib/berkeley_library/tind/api/api_exception.rb +131 -0
  27. data/lib/berkeley_library/tind/api/collection.rb +82 -0
  28. data/lib/berkeley_library/tind/api/date_range.rb +67 -0
  29. data/lib/berkeley_library/tind/api/format.rb +32 -0
  30. data/lib/berkeley_library/tind/api/search.rb +100 -0
  31. data/lib/berkeley_library/tind/config.rb +103 -0
  32. data/lib/berkeley_library/tind/export.rb +1 -0
  33. data/lib/berkeley_library/tind/export/column.rb +54 -0
  34. data/lib/berkeley_library/tind/export/column_group.rb +144 -0
  35. data/lib/berkeley_library/tind/export/column_group_list.rb +131 -0
  36. data/lib/berkeley_library/tind/export/column_width_calculator.rb +76 -0
  37. data/lib/berkeley_library/tind/export/config.rb +154 -0
  38. data/lib/berkeley_library/tind/export/csv_exporter.rb +29 -0
  39. data/lib/berkeley_library/tind/export/export.rb +47 -0
  40. data/lib/berkeley_library/tind/export/export_command.rb +168 -0
  41. data/lib/berkeley_library/tind/export/export_exception.rb +8 -0
  42. data/lib/berkeley_library/tind/export/export_format.rb +67 -0
  43. data/lib/berkeley_library/tind/export/exporter.rb +105 -0
  44. data/lib/berkeley_library/tind/export/filter.rb +52 -0
  45. data/lib/berkeley_library/tind/export/no_results_error.rb +7 -0
  46. data/lib/berkeley_library/tind/export/ods_exporter.rb +138 -0
  47. data/lib/berkeley_library/tind/export/row.rb +24 -0
  48. data/lib/berkeley_library/tind/export/row_metrics.rb +18 -0
  49. data/lib/berkeley_library/tind/export/table.rb +175 -0
  50. data/lib/berkeley_library/tind/export/table_metrics.rb +116 -0
  51. data/lib/berkeley_library/tind/marc.rb +1 -0
  52. data/lib/berkeley_library/tind/marc/xml_reader.rb +144 -0
  53. data/lib/berkeley_library/tind/module_info.rb +14 -0
  54. data/lib/berkeley_library/util/arrays.rb +178 -0
  55. data/lib/berkeley_library/util/logging.rb +1 -0
  56. data/lib/berkeley_library/util/ods/spreadsheet.rb +170 -0
  57. data/lib/berkeley_library/util/ods/xml/content_doc.rb +26 -0
  58. data/lib/berkeley_library/util/ods/xml/document_node.rb +57 -0
  59. data/lib/berkeley_library/util/ods/xml/element_node.rb +106 -0
  60. data/lib/berkeley_library/util/ods/xml/loext/table_protection.rb +26 -0
  61. data/lib/berkeley_library/util/ods/xml/manifest/file_entry.rb +42 -0
  62. data/lib/berkeley_library/util/ods/xml/manifest/manifest.rb +73 -0
  63. data/lib/berkeley_library/util/ods/xml/manifest_doc.rb +26 -0
  64. data/lib/berkeley_library/util/ods/xml/namespace.rb +46 -0
  65. data/lib/berkeley_library/util/ods/xml/office/automatic_styles.rb +181 -0
  66. data/lib/berkeley_library/util/ods/xml/office/body.rb +17 -0
  67. data/lib/berkeley_library/util/ods/xml/office/document_content.rb +98 -0
  68. data/lib/berkeley_library/util/ods/xml/office/document_styles.rb +39 -0
  69. data/lib/berkeley_library/util/ods/xml/office/font_face_decls.rb +30 -0
  70. data/lib/berkeley_library/util/ods/xml/office/scripts.rb +17 -0
  71. data/lib/berkeley_library/util/ods/xml/office/spreadsheet.rb +37 -0
  72. data/lib/berkeley_library/util/ods/xml/office/styles.rb +39 -0
  73. data/lib/berkeley_library/util/ods/xml/style/cell_style.rb +58 -0
  74. data/lib/berkeley_library/util/ods/xml/style/column_style.rb +36 -0
  75. data/lib/berkeley_library/util/ods/xml/style/default_style.rb +31 -0
  76. data/lib/berkeley_library/util/ods/xml/style/family.rb +85 -0
  77. data/lib/berkeley_library/util/ods/xml/style/font_face.rb +46 -0
  78. data/lib/berkeley_library/util/ods/xml/style/paragraph_properties.rb +30 -0
  79. data/lib/berkeley_library/util/ods/xml/style/row_style.rb +37 -0
  80. data/lib/berkeley_library/util/ods/xml/style/style.rb +44 -0
  81. data/lib/berkeley_library/util/ods/xml/style/table_cell_properties.rb +40 -0
  82. data/lib/berkeley_library/util/ods/xml/style/table_column_properties.rb +30 -0
  83. data/lib/berkeley_library/util/ods/xml/style/table_properties.rb +25 -0
  84. data/lib/berkeley_library/util/ods/xml/style/table_row_properties.rb +28 -0
  85. data/lib/berkeley_library/util/ods/xml/style/table_style.rb +27 -0
  86. data/lib/berkeley_library/util/ods/xml/style/text_properties.rb +52 -0
  87. data/lib/berkeley_library/util/ods/xml/styles_doc.rb +26 -0
  88. data/lib/berkeley_library/util/ods/xml/table/named_expressions.rb +17 -0
  89. data/lib/berkeley_library/util/ods/xml/table/repeatable.rb +38 -0
  90. data/lib/berkeley_library/util/ods/xml/table/table.rb +193 -0
  91. data/lib/berkeley_library/util/ods/xml/table/table_cell.rb +46 -0
  92. data/lib/berkeley_library/util/ods/xml/table/table_column.rb +43 -0
  93. data/lib/berkeley_library/util/ods/xml/table/table_row.rb +136 -0
  94. data/lib/berkeley_library/util/ods/xml/text/p.rb +118 -0
  95. data/lib/berkeley_library/util/paths.rb +111 -0
  96. data/lib/berkeley_library/util/stringios.rb +30 -0
  97. data/lib/berkeley_library/util/strings.rb +42 -0
  98. data/lib/berkeley_library/util/sys_exits.rb +15 -0
  99. data/lib/berkeley_library/util/times.rb +22 -0
  100. data/lib/berkeley_library/util/uris.rb +44 -0
  101. data/lib/berkeley_library/util/uris/appender.rb +162 -0
  102. data/lib/berkeley_library/util/uris/requester.rb +62 -0
  103. data/lib/berkeley_library/util/uris/validator.rb +32 -0
  104. data/rakelib/bundle.rake +8 -0
  105. data/rakelib/coverage.rake +11 -0
  106. data/rakelib/gem.rake +54 -0
  107. data/rakelib/rubocop.rake +18 -0
  108. data/rakelib/spec.rake +2 -0
  109. data/spec/.rubocop.yml +40 -0
  110. data/spec/berkeley_library/tind/api/api_exception_spec.rb +91 -0
  111. data/spec/berkeley_library/tind/api/api_spec.rb +143 -0
  112. data/spec/berkeley_library/tind/api/collection_spec.rb +74 -0
  113. data/spec/berkeley_library/tind/api/date_range_spec.rb +110 -0
  114. data/spec/berkeley_library/tind/api/format_spec.rb +54 -0
  115. data/spec/berkeley_library/tind/api/search_spec.rb +364 -0
  116. data/spec/berkeley_library/tind/config_spec.rb +86 -0
  117. data/spec/berkeley_library/tind/export/column_group_spec.rb +29 -0
  118. data/spec/berkeley_library/tind/export/column_spec.rb +43 -0
  119. data/spec/berkeley_library/tind/export/config_spec.rb +206 -0
  120. data/spec/berkeley_library/tind/export/export_command_spec.rb +169 -0
  121. data/spec/berkeley_library/tind/export/export_format_spec.rb +59 -0
  122. data/spec/berkeley_library/tind/export/export_matcher.rb +112 -0
  123. data/spec/berkeley_library/tind/export/export_spec.rb +150 -0
  124. data/spec/berkeley_library/tind/export/exporter_spec.rb +125 -0
  125. data/spec/berkeley_library/tind/export/row_spec.rb +118 -0
  126. data/spec/berkeley_library/tind/export/table_spec.rb +322 -0
  127. data/spec/berkeley_library/tind/marc/xml_reader_spec.rb +93 -0
  128. data/spec/berkeley_library/util/arrays_spec.rb +340 -0
  129. data/spec/berkeley_library/util/ods/spreadsheet_spec.rb +124 -0
  130. data/spec/berkeley_library/util/ods/xml/content_doc_spec.rb +121 -0
  131. data/spec/berkeley_library/util/ods/xml/manifest/file_entry_spec.rb +27 -0
  132. data/spec/berkeley_library/util/ods/xml/manifest/manifest_spec.rb +33 -0
  133. data/spec/berkeley_library/util/ods/xml/office/document_content_spec.rb +60 -0
  134. data/spec/berkeley_library/util/ods/xml/style/automatic_styles_spec.rb +37 -0
  135. data/spec/berkeley_library/util/ods/xml/style/family_spec.rb +57 -0
  136. data/spec/berkeley_library/util/ods/xml/table/table_row_spec.rb +179 -0
  137. data/spec/berkeley_library/util/ods/xml/table/table_spec.rb +218 -0
  138. data/spec/berkeley_library/util/paths_spec.rb +90 -0
  139. data/spec/berkeley_library/util/stringios_spec.rb +34 -0
  140. data/spec/berkeley_library/util/strings_spec.rb +27 -0
  141. data/spec/berkeley_library/util/times_spec.rb +39 -0
  142. data/spec/berkeley_library/util/uris_spec.rb +118 -0
  143. data/spec/data/collection-names.txt +438 -0
  144. data/spec/data/collections.json +4827 -0
  145. data/spec/data/disjoint-records.xml +187 -0
  146. data/spec/data/record-184453.xml +58 -0
  147. data/spec/data/record-184458.xml +63 -0
  148. data/spec/data/record-187888.xml +78 -0
  149. data/spec/data/records-api-search-cjk-p1.xml +6381 -0
  150. data/spec/data/records-api-search-cjk-p2.xml +5 -0
  151. data/spec/data/records-api-search-p1.xml +4506 -0
  152. data/spec/data/records-api-search-p2.xml +4509 -0
  153. data/spec/data/records-api-search-p3.xml +4506 -0
  154. data/spec/data/records-api-search-p4.xml +4509 -0
  155. data/spec/data/records-api-search-p5.xml +4506 -0
  156. data/spec/data/records-api-search-p6.xml +2436 -0
  157. data/spec/data/records-api-search-p7.xml +5 -0
  158. data/spec/data/records-api-search.xml +234 -0
  159. data/spec/data/records-manual-search.xml +547 -0
  160. data/spec/spec_helper.rb +30 -0
  161. data/test/profile/table_from_records_profile.rb +46 -0
  162. metadata +585 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 45e5cb4582c39cf8970c635a80d62613a64fd18fed34d6aed5ee69056dbcef75
4
+ data.tar.gz: 27d48c5c119a66e56e3cdbc0d89460cc66cc44a92653704e0c4991a9ad5bfa3b
5
+ SHA512:
6
+ metadata.gz: e7b5c185fce614223b4290cc55db8c888b02f08d835cecdb6927b4b775ea968c3db97dc0993295a1ded15282bc87bcc8e2e311f1058a85211c07f8ddc742ad31
7
+ data.tar.gz: 905fa0971f1ce7a9fd460e5a59719892f9abbfa5bf2210f5f40de30c80ea2b745d272181ddbb625f6925b0909e262a7820963a230e560be396805bf137d9ba40
@@ -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/misc.xml ADDED
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.6.3" project-jdk-type="RUBY_SDK" />
4
+ </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/tind.iml" filepath="$PROJECT_DIR$/.idea/tind.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>