yarrow 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4be44c931a92757c5be67d594977711597a71560b8ea37f6ea666842c128ddd8
4
- data.tar.gz: c8af0e56a102cec9b111d921a5333c703bd341084ebd839fb4eb870728530dff
3
+ metadata.gz: 6b44d99f6d8696237f4e571ab6f6301fe337c93c6ff218e735acd1c0ed3fbe29
4
+ data.tar.gz: 12419fb4e83374e8ff79700fa8a6b14cfcf3ed5a44cd94adc91f8885a3e7f9fe
5
5
  SHA512:
6
- metadata.gz: 265f331b400a0ddcfa6163da67c7fb30c57ee4c3506fa2ae8be4e346512884134dfcc8cfc9ee0ffd7e55575d7a7f3433d3c3f1b1f8fc172939f3423dac92c154
7
- data.tar.gz: 4ea5214183ac720a1cec31f9ac6b6371012c2ac79476278afc2bb55dcdcf6155c8e6688ab03c349a2035aa62c6ef6e5ca0b0ae75318975d590274a1f1a4913b3
6
+ metadata.gz: af1fdac9c1ac87957f098dd5fe1e3e22d7ac9b78756838226a596a8262bcd438c185cad81dfa3b5ae5f3f071d9c203afdea5e668a79d9b80096a140e310aef3b
7
+ data.tar.gz: e237d7964723ad433fab071ef36026979f5a5d2010fc11ce3b787566b8f4c12232b47c8b5dadb0043e93db1d5cd8679b99ec71db303269d244c1e8687b0204aa
@@ -52,11 +52,13 @@ module Yarrow
52
52
  # automated as part of the schema types or a default value should be
53
53
  # generated here (eg: `"#{Dir.pwd}/docs"`)
54
54
  out_dir_or_string = config[:output_dir] || ""
55
+ source_dir_or_string = config[:source] || ""
56
+ content_dir_or_string = config[:content] || ""
55
57
 
56
58
  Yarrow::Config::Instance.new(
57
59
  output_dir: Pathname.new(File.expand_path(out_dir_or_string)),
58
- source: Pathname.new(File.expand_path(out_dir_or_string)),
59
- content: Pathname.new(File.expand_path(out_dir_or_string)),
60
+ source: Pathname.new(File.expand_path(source_dir_or_string)),
61
+ content: Pathname.new(File.expand_path(content_dir_or_string)),
60
62
  meta: meta_obj,
61
63
  server: server_obj
62
64
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Yarrow
3
3
  APP_NAME = 'Yarrow'
4
- VERSION = '0.6.3'
4
+ VERSION = '0.6.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yarrow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Rickerby