architecture 6.0.4 → 6.0.5

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
  SHA1:
3
- metadata.gz: 0fcb24b8a2873feea219aed7e257aefe340347e4
4
- data.tar.gz: 6140c44f1e88760004c0ed1f35e702c83398a557
3
+ metadata.gz: 68ae57d0eaa824f55fbb9e347bdbf8a057313a87
4
+ data.tar.gz: 4c90bf7061b10323222b338ddf9369f217ff00b4
5
5
  SHA512:
6
- metadata.gz: 63edd09d277f8624f1ad97fc9f6c7df267e44d30ef4406e348413592281b1732660e23af38c73672936edccac23a8fff6779d6175c3ef2945007a07989b4f5d1
7
- data.tar.gz: 9b74e7c0a66a9d2ab110df3116be57aff3a764f42838b042168c20600571593bbf62205670d4c9f5a2e77bbb35e0fd8d34b691b73864573c819c8f74292aa006
6
+ metadata.gz: 3772ac56328365b05b7078745105d6d1f80cee0124bd79b30ecdaa6f117adcc15e0c74381d5c6c3785f5487e47f3a2631b7ec087a9a3022bcd9ecea4d97e82a6
7
+ data.tar.gz: a6353846f683af5cbb62d4d7c431307eca681394fbfc1ad8b4bb638cfd0e75ee5173e90077ac55c1e29ebeb3316b008952d9a0400216ff0c35929543cfb7e6de
@@ -107,9 +107,9 @@ module Architecture
107
107
  end
108
108
 
109
109
  def within(directory: nil, source: @source, destination: @destination, &block)
110
- @output.puts "#{indentention}Within #{destination}"
110
+ @output.puts "#{indentention}Within #{join(directory || destination)}"
111
111
 
112
- self.class.new(source: join(@source, source, directory), destination: join(@destination, destination, directory), output: @output, level: @level + 1, &block)
112
+ self.class.new(source: join(@source, directory || source), destination: join(@destination, directory || destination), output: @output, level: @level + 1, &block)
113
113
  end
114
114
 
115
115
  private def join(*ids)
@@ -1,3 +1,3 @@
1
1
  module Architecture
2
- VERSION = "6.0.4"
2
+ VERSION = "6.0.5"
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.4
4
+ version: 6.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kurtis Rainbolt-Greene