architecture 6.0.0 → 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0018a5e560bdab42d3233c1787f1f7d5deedb46
4
- data.tar.gz: 110444d0a95fc6474f87213028fa3b1d3756c569
3
+ metadata.gz: 007324f8c8e597b68cdb910f8b22d7466e66bd92
4
+ data.tar.gz: 49a91e69710d43dccba396d131cf18770358b074
5
5
  SHA512:
6
- metadata.gz: 85f72b3371d8640b7bb2b864cec8c918ff63351abd309e4952a8cfd771d62dc4d1fe326526234c99ac523fd2e096a1b99a2934d1f426fc61558b632701daab8e
7
- data.tar.gz: 1d5fa573a11c11fdf6d0556f2c8ae0e6b3a6ccb43691ebe2a5ba597ddb972d031388241bdabdd619e8e942c06a8911c6d6830523fb43612a9dd1931055165f96
6
+ metadata.gz: c71479c2270f1207c361dbd0e31f576b9921b2841ec1b38c0a9c00294631db6bf9da7c23310222002d1ebcd10d986e915bced281d96d0a7fc6676799864e4d10
7
+ data.tar.gz: 5590c4f343d887cf7266cdf03038e1e0f99eed226c8f737f390218e00671cb6dece100e79da26d88b1c1e3f63102a75e404715c24401a7657d52c388809d0fb2
@@ -22,7 +22,7 @@ module Architecture
22
22
  @output.puts(" succeeded.")
23
23
 
24
24
  if block_given? && directory
25
- within(directory: directory)
25
+ within(directory: directory, &block)
26
26
  end
27
27
  end
28
28
 
@@ -37,7 +37,7 @@ module Architecture
37
37
  @output.puts(" succeeded.")
38
38
 
39
39
  if block_given? && directory
40
- within(directory: directory)
40
+ within(directory: directory, &block)
41
41
  end
42
42
  end
43
43
 
@@ -51,7 +51,7 @@ module Architecture
51
51
  @output.puts(" succeeded.")
52
52
 
53
53
  if block_given? && directory
54
- within(directory: directory)
54
+ within(directory: directory, &block)
55
55
  end
56
56
  end
57
57
 
@@ -53,6 +53,10 @@ module Architecture
53
53
  type(engine: engine) == DIRECTORY_MIMETYPE
54
54
  end
55
55
 
56
+ def to_s
57
+ "{#{path}}"
58
+ end
59
+
56
60
  private def path
57
61
  @path
58
62
  end
@@ -1,3 +1,3 @@
1
1
  module Architecture
2
- VERSION = "6.0.0"
2
+ VERSION = "6.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: architecture
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kurtis Rainbolt-Greene