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 +7 -0
- data/lib/pt_testcase.rb +3 -5
- data/lib/sexp_processor.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +28 -14
- metadata.gz.sig +0 -0
data/History.txt
CHANGED
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" => "
|
|
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",
|
data/lib/sexp_processor.rb
CHANGED
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:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 3
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 3.0.
|
|
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-
|
|
39
|
+
date: 2011-09-22 00:00:00 Z
|
|
40
40
|
dependencies:
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
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:
|
|
49
|
+
hash: 21
|
|
50
50
|
segments:
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
|
|
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:
|
|
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: *
|
|
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.
|
|
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
|