zizia 2.1.0.alpha.05 → 2.1.0.alpha.06
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/zizia/version.rb +1 -1
- data/spec/views/zizia/importer_documentation/guide.html.erb_spec.rb +13 -0
- metadata +4 -4
- data/spec/views/importer_documentation/guide.html.erb_spec.rb +0 -9
- /data/app/views/{importer_documentation → zizia/importer_documentation}/guide.html.erb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03f0d7edfa32894dcbbbca57b5c6ecee005e57a41e90c81edaf7f012ea4769c4
|
4
|
+
data.tar.gz: 1c3a2332eb06a562f1954b598551a88f1b24bf1c45afe6e5a846738a0a537697
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c26abb5426d5db325f47dfe5b5399f6f9543b41f048b61d4d8e8ce641428cac6782c3f9f266ec8a0ee20f28c9abffc9cda7d674d42e55fc405b6666844d442e
|
7
|
+
data.tar.gz: 5586e21dc4c646af501a28ec0f96d8c11a2ab0dff1710d47b17865d9c9d10733b849de2c6308176ad1985d839a8cb988dd5ebfaf497df305f45e69275d856859
|
data/lib/zizia/version.rb
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
RSpec.describe "zizia/importer_documentation/guide.html.erb", type: :view do
|
5
|
+
before do
|
6
|
+
view.stub(:render_guide).and_return('<h1 id="title">Title</h1>')
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'renders as html' do
|
10
|
+
render
|
11
|
+
expect(rendered).to match(/<h1 id="title">Title<\/h1>/)
|
12
|
+
end
|
13
|
+
end
|
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.1.0.alpha.
|
4
|
+
version: 2.1.0.alpha.06
|
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-08-
|
11
|
+
date: 2019-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active-fedora
|
@@ -298,7 +298,6 @@ files:
|
|
298
298
|
- app/models/zizia/csv_import.rb
|
299
299
|
- app/uploaders/zizia/csv_manifest_uploader.rb
|
300
300
|
- app/uploaders/zizia/csv_manifest_validator.rb
|
301
|
-
- app/views/importer_documentation/guide.html.erb
|
302
301
|
- app/views/layouts/zizia/application.html.erb
|
303
302
|
- app/views/zizia/csv_imports/_actions.html.erb
|
304
303
|
- app/views/zizia/csv_imports/_collection_selection.html.erb
|
@@ -312,6 +311,7 @@ files:
|
|
312
311
|
- app/views/zizia/csv_imports/new.html.erb
|
313
312
|
- app/views/zizia/csv_imports/preview.html.erb
|
314
313
|
- app/views/zizia/csv_imports/show.html.erb
|
314
|
+
- app/views/zizia/importer_documentation/guide.html.erb
|
315
315
|
- bin/rails
|
316
316
|
- config/routes.rb
|
317
317
|
- db/migrate/201901162141281_create_zizia_csv_imports.rb
|
@@ -456,7 +456,7 @@ files:
|
|
456
456
|
- spec/support/hyrax/basic_metadata.rb
|
457
457
|
- spec/support/hyrax/core_metadata.rb
|
458
458
|
- spec/support/shared_contexts/with_work_type.rb
|
459
|
-
- spec/views/importer_documentation/guide.html.erb_spec.rb
|
459
|
+
- spec/views/zizia/importer_documentation/guide.html.erb_spec.rb
|
460
460
|
- spec/zizia/csv_format_validator_spec.rb
|
461
461
|
- spec/zizia/csv_parser_spec.rb
|
462
462
|
- spec/zizia/formatted_message_stream_spec.rb
|
File without changes
|