sexp_processor 3.0.6 → 3.0.7

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.
data/History.txt CHANGED
@@ -1,3 +1,10 @@
1
+ === 3.0.7 / 2011-09-21
2
+
3
+ * 2 bug fixes:
4
+
5
+ * Fixed and test to not have mandatory parens
6
+ * Fixed r2r's handling of dregexp options
7
+
1
8
  === 3.0.6 / 2011-08-16
2
9
 
3
10
  * 5 minor enhancements:
data/lib/pt_testcase.rb CHANGED
@@ -229,7 +229,7 @@ class ParseTreeTestCase < MiniTest::Unit::TestCase
229
229
  "Ruby2Ruby" => "class X\n alias :y :x\nend")
230
230
 
231
231
  add_tests("and",
232
- "Ruby" => "(a and b)",
232
+ "Ruby" => "a and b",
233
233
  "RawParseTree" => [:and, [:vcall, :a], [:vcall, :b]],
234
234
  "ParseTree" => s(:and,
235
235
  s(:call, nil, :a, s(:arglist)),
@@ -1932,8 +1932,7 @@ class ParseTreeTestCase < MiniTest::Unit::TestCase
1932
1932
  "Ruby" => '/#{1}/n',
1933
1933
  "RawParseTree" => [:dregx, '', [:evstr, [:lit, 1]], /x/n.options],
1934
1934
  "ParseTree" => s(:dregx, '',
1935
- s(:evstr, s(:lit, 1)), /x/n.options),
1936
- "Ruby2Ruby" => "/#\{1}/") # HACK - need to support regexp flag
1935
+ s(:evstr, s(:lit, 1)), /x/n.options))
1937
1936
 
1938
1937
  add_tests("dregx_once",
1939
1938
  "Ruby" => "/x#\{(1 + 1)}y/o",
@@ -1954,8 +1953,7 @@ class ParseTreeTestCase < MiniTest::Unit::TestCase
1954
1953
  [:evstr, [:const, :SB]], /x/n.options],
1955
1954
  "ParseTree" => s(:dregx_once, '',
1956
1955
  s(:evstr, s(:const, :IAC)),
1957
- s(:evstr, s(:const, :SB)), /x/n.options),
1958
- "Ruby2Ruby" => "/#\{IAC}#\{SB}/o") # HACK
1956
+ s(:evstr, s(:const, :SB)), /x/n.options))
1959
1957
 
1960
1958
  add_tests("dstr",
1961
1959
  "Ruby" => "argl = 1\n\"x#\{argl}y\"\n",
@@ -34,7 +34,7 @@ require 'sexp'
34
34
 
35
35
  class SexpProcessor
36
36
 
37
- VERSION = '3.0.6'
37
+ VERSION = '3.0.7'
38
38
 
39
39
  ##
40
40
  # Automatically shifts off the Sexp type before handing the
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sexp_processor
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 6
10
- version: 3.0.6
9
+ - 7
10
+ version: 3.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Davis
@@ -36,28 +36,42 @@ cert_chain:
36
36
  FBHgymkyj/AOSqKRIpXPhjC6
37
37
  -----END CERTIFICATE-----
38
38
 
39
- date: 2011-08-16 00:00:00 Z
39
+ date: 2011-09-22 00:00:00 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
- name: minitest
42
+ name: rdoc
43
43
  prerelease: false
44
44
  requirement: &id001 !ruby/object:Gem::Requirement
45
45
  none: false
46
46
  requirements:
47
- - - ">="
47
+ - - ~>
48
48
  - !ruby/object:Gem::Version
49
- hash: 31
49
+ hash: 21
50
50
  segments:
51
- - 2
52
- - 4
53
- - 0
54
- version: 2.4.0
51
+ - 3
52
+ - 9
53
+ version: "3.9"
55
54
  type: :development
56
55
  version_requirements: *id001
57
56
  - !ruby/object:Gem::Dependency
58
- name: hoe
57
+ name: minitest
59
58
  prerelease: false
60
59
  requirement: &id002 !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ~>
63
+ - !ruby/object:Gem::Version
64
+ hash: 9
65
+ segments:
66
+ - 2
67
+ - 5
68
+ version: "2.5"
69
+ type: :development
70
+ version_requirements: *id002
71
+ - !ruby/object:Gem::Dependency
72
+ name: hoe
73
+ prerelease: false
74
+ requirement: &id003 !ruby/object:Gem::Requirement
61
75
  none: false
62
76
  requirements:
63
77
  - - ~>
@@ -68,7 +82,7 @@ dependencies:
68
82
  - 12
69
83
  version: "2.12"
70
84
  type: :development
71
- version_requirements: *id002
85
+ version_requirements: *id003
72
86
  description: |-
73
87
  sexp_processor branches from ParseTree bringing all the generic sexp
74
88
  processing tools with it. Sexp, SexpProcessor, Environment, etc... all
@@ -128,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
142
  requirements: []
129
143
 
130
144
  rubyforge_project: parsetree
131
- rubygems_version: 1.8.8
145
+ rubygems_version: 1.8.10
132
146
  signing_key:
133
147
  specification_version: 3
134
148
  summary: sexp_processor branches from ParseTree bringing all the generic sexp processing tools with it
metadata.gz.sig CHANGED
Binary file