rufus-treechecker 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +5 -0
- data/lib/rufus/treechecker.rb +2 -1
- data/spec/high_spec.rb +2 -1
- metadata +4 -4
data/CHANGELOG.txt
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
= rufus-treechecker CHANGELOG.txt
|
3
3
|
|
4
4
|
|
5
|
+
== rufus-treechecker - 1.0.8 released 2011/08/01
|
6
|
+
|
7
|
+
- exclude_backquotes now intercepting `x #{y} z`
|
8
|
+
|
9
|
+
|
5
10
|
== rufus-treechecker - 1.0.7 released 2011/07/31
|
6
11
|
|
7
12
|
- "rescue => e" not triggering "global vars forbidden" anymore
|
data/lib/rufus/treechecker.rb
CHANGED
@@ -122,7 +122,7 @@ module Rufus
|
|
122
122
|
#
|
123
123
|
class TreeChecker
|
124
124
|
|
125
|
-
VERSION = '1.0.
|
125
|
+
VERSION = '1.0.8'
|
126
126
|
|
127
127
|
# pretty-prints the sexp tree of the given rubycode
|
128
128
|
#
|
@@ -499,6 +499,7 @@ module Rufus
|
|
499
499
|
def exclude_backquotes
|
500
500
|
|
501
501
|
@current_set.exclude_symbol(:xstr, 'backquotes are forbidden')
|
502
|
+
@current_set.exclude_symbol(:dxstr, 'backquotes are forbidden')
|
502
503
|
end
|
503
504
|
|
504
505
|
# Bans raise and throw
|
data/spec/high_spec.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rufus-treechecker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 8
|
10
|
+
version: 1.0.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- John Mettraux
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-08-01 00:00:00 +09:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|