rufus-treechecker 1.0.7 → 1.0.8

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.
@@ -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
@@ -122,7 +122,7 @@ module Rufus
122
122
  #
123
123
  class TreeChecker
124
124
 
125
- VERSION = '1.0.7'
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
@@ -204,7 +204,8 @@ describe Rufus::TreeChecker do
204
204
 
205
205
  [
206
206
 
207
- '`kill -9 whatever`'
207
+ '`kill -9 whatever`',
208
+ '[ 1, 2, 3 ].each { |i| `echo #{i}.txt` }'
208
209
 
209
210
  ].each do |code|
210
211
 
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: 25
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 7
10
- version: 1.0.7
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-07-31 00:00:00 +09:00
18
+ date: 2011-08-01 00:00:00 +09:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency