teepee 0.17.1 → 0.17.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/teepee/list-parser.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec98a56505507ed974b411ef923bc23fd45080c4
|
4
|
+
data.tar.gz: c2113c1c504ab0d073ac7940c795be094c2d31e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f219caaa14a42c04bf73652262c7fbb3b37d5636dcce490564aac55b1076c408e3f590cf7172723016b663f066d3d0b0934e96b807fb17199c3ba8fbf4bb1c3
|
7
|
+
data.tar.gz: 3b142738e4b169842d0c79d740ba914285440ce122db3771620be5fa10b33e53cee37fb92d786f4e643fb078c844c2b1185612018c2f3d68dbdd7703ec6ec0e9
|
data/lib/teepee/list-parser.rb
CHANGED
@@ -76,7 +76,7 @@ module Teepee
|
|
76
76
|
elsif rest.first.is_a? WhitespaceToken
|
77
77
|
rest.shift # Drop the whitespace, this is the list separator.
|
78
78
|
elsif rest.first.is_a? BackslashToken
|
79
|
-
result, rest = CommandParser.parse parser, scope, rest
|
79
|
+
result, rest = CommandParser.parse parser, scope.derive, rest
|
80
80
|
expressions << result
|
81
81
|
elsif rest.first.is_a? RightBraceToken
|
82
82
|
right_brace = rest.shift
|