zizia 2.0.0.alpha.01 → 2.1.0.alpha.01
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +44 -0
- data/app/importers/modular_importer.rb +31 -0
- data/app/jobs/zizia/start_csv_import_job.rb +0 -1
- data/app/uploaders/zizia/csv_manifest_validator.rb +163 -0
- data/app/views/zizia/csv_imports/show.html.erb +1 -1
- data/docs/index.md +23 -8
- data/lib/zizia/version.rb +1 -1
- data/solr/config/_rest_managed.json +3 -0
- data/solr/config/admin-extra.html +31 -0
- data/solr/config/elevate.xml +36 -0
- data/solr/config/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/config/protwords.txt +21 -0
- data/solr/config/routes.rb +9 -0
- data/solr/config/schema.xml +366 -0
- data/solr/config/scripts.conf +24 -0
- data/solr/config/solrconfig.xml +322 -0
- data/solr/config/spellings.txt +2 -0
- data/solr/config/stopwords.txt +58 -0
- data/solr/config/stopwords_en.txt +58 -0
- data/solr/config/synonyms.txt +31 -0
- data/solr/config/xslt/example.xsl +132 -0
- data/solr/config/xslt/example_atom.xsl +67 -0
- data/solr/config/xslt/example_rss.xsl +66 -0
- data/solr/config/xslt/luke.xsl +337 -0
- data/spec/fixtures/dog.jpg +0 -0
- data/zizia.gemspec +1 -0
- metadata +38 -4
Binary file
|
data/zizia.gemspec
CHANGED
@@ -28,6 +28,7 @@ Gem::Specification.new do |gem|
|
|
28
28
|
gem.add_development_dependency 'hyrax-spec'
|
29
29
|
gem.add_development_dependency 'rspec'
|
30
30
|
gem.add_development_dependency 'rspec-rails'
|
31
|
+
gem.add_development_dependency 'rspec_junit_formatter'
|
31
32
|
gem.add_development_dependency 'coveralls'
|
32
33
|
gem.add_development_dependency 'solr_wrapper', '~> 2.1'
|
33
34
|
gem.add_development_dependency 'fcrepo_wrapper', '~> 0.9'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zizia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0.alpha.01
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Data Curation Experts
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active-fedora
|
@@ -150,6 +150,20 @@ dependencies:
|
|
150
150
|
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rspec_junit_formatter
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
153
167
|
- !ruby/object:Gem::Dependency
|
154
168
|
name: coveralls
|
155
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -241,6 +255,7 @@ executables: []
|
|
241
255
|
extensions: []
|
242
256
|
extra_rdoc_files: []
|
243
257
|
files:
|
258
|
+
- ".circleci/config.yml"
|
244
259
|
- ".gitignore"
|
245
260
|
- ".rubocop.yml"
|
246
261
|
- ".rubocop_todo.yml"
|
@@ -258,12 +273,14 @@ files:
|
|
258
273
|
- app/controllers/zizia/importer_documentation_controller.rb
|
259
274
|
- app/helpers/importer_documentation_helper.rb
|
260
275
|
- app/helpers/zizia/application_helper.rb
|
276
|
+
- app/importers/modular_importer.rb
|
261
277
|
- app/jobs/zizia/application_job.rb
|
262
278
|
- app/jobs/zizia/start_csv_import_job.rb
|
263
279
|
- app/mailers/zizia/application_mailer.rb
|
264
280
|
- app/models/zizia/application_record.rb
|
265
281
|
- app/models/zizia/csv_import.rb
|
266
282
|
- app/uploaders/zizia/csv_manifest_uploader.rb
|
283
|
+
- app/uploaders/zizia/csv_manifest_validator.rb
|
267
284
|
- app/views/importer_documentation/guide.html.erb
|
268
285
|
- app/views/layouts/zizia/application.html.erb
|
269
286
|
- app/views/zizia/csv_imports/_actions.html.erb
|
@@ -312,6 +329,23 @@ files:
|
|
312
329
|
- lib/zizia/validators/title_validator.rb
|
313
330
|
- lib/zizia/version.rb
|
314
331
|
- log/.keep
|
332
|
+
- solr/config/_rest_managed.json
|
333
|
+
- solr/config/admin-extra.html
|
334
|
+
- solr/config/elevate.xml
|
335
|
+
- solr/config/mapping-ISOLatin1Accent.txt
|
336
|
+
- solr/config/protwords.txt
|
337
|
+
- solr/config/routes.rb
|
338
|
+
- solr/config/schema.xml
|
339
|
+
- solr/config/scripts.conf
|
340
|
+
- solr/config/solrconfig.xml
|
341
|
+
- solr/config/spellings.txt
|
342
|
+
- solr/config/stopwords.txt
|
343
|
+
- solr/config/stopwords_en.txt
|
344
|
+
- solr/config/synonyms.txt
|
345
|
+
- solr/config/xslt/example.xsl
|
346
|
+
- solr/config/xslt/example_atom.xsl
|
347
|
+
- solr/config/xslt/example_rss.xsl
|
348
|
+
- solr/config/xslt/luke.xsl
|
315
349
|
- spec/controllers/importer_documentation_controller_spec.rb
|
316
350
|
- spec/dummy/.gitignore
|
317
351
|
- spec/dummy/Gemfile
|
@@ -391,6 +425,7 @@ files:
|
|
391
425
|
- spec/dummy/test/test_helper.rb
|
392
426
|
- spec/dummy/vendor/.keep
|
393
427
|
- spec/fixtures/bad_example.csv
|
428
|
+
- spec/fixtures/dog.jpg
|
394
429
|
- spec/fixtures/example.csv
|
395
430
|
- spec/fixtures/hyrax/example.csv
|
396
431
|
- spec/fixtures/images/animals/cat.png
|
@@ -439,8 +474,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
439
474
|
- !ruby/object:Gem::Version
|
440
475
|
version: 1.3.1
|
441
476
|
requirements: []
|
442
|
-
|
443
|
-
rubygems_version: 2.7.6
|
477
|
+
rubygems_version: 3.0.4
|
444
478
|
signing_key:
|
445
479
|
specification_version: 4
|
446
480
|
summary: Hyrax importers.
|