ParseTree 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +15 -0
- data/Makefile +25 -0
- data/Manifest.txt +14 -0
- data/README.txt +104 -0
- data/composite_sexp_processor.rb +24 -0
- data/parse_tree.rb +545 -0
- data/parse_tree_abc +62 -0
- data/parse_tree_show +28 -0
- data/sexp_processor.rb +301 -0
- data/something.rb +162 -0
- data/test_all.rb +7 -0
- data/test_composite_sexp_processor.rb +69 -0
- data/test_parse_tree.rb +275 -0
- data/test_sexp_processor.rb +382 -0
- metadata +55 -0
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.1
|
3
|
+
specification_version: 1
|
4
|
+
name: ParseTree
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.1.0
|
7
|
+
date: 2004-11-20
|
8
|
+
summary: Extract and enumerate ruby parse trees.
|
9
|
+
require_paths:
|
10
|
+
- "."
|
11
|
+
author: Ryan Davis
|
12
|
+
email: ryand-ruby@zenspider.com
|
13
|
+
homepage: http://www.zenspider.com/ZSS/Products/ParseTree/
|
14
|
+
rubyforge_project: parsetree
|
15
|
+
description: "ParseTree is a C extension (using RubyInline) that extracts the parse tree for
|
16
|
+
an entire class or a specific method and returns it as a s-expression (aka sexp)
|
17
|
+
using ruby's arrays, strings, symbols, and integers."
|
18
|
+
autorequire: parse_tree
|
19
|
+
default_executable:
|
20
|
+
bindir: "."
|
21
|
+
has_rdoc: true
|
22
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
23
|
+
requirements:
|
24
|
+
-
|
25
|
+
- ">"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.0.0
|
28
|
+
version:
|
29
|
+
platform: ruby
|
30
|
+
files:
|
31
|
+
- History.txt
|
32
|
+
- Makefile
|
33
|
+
- Manifest.txt
|
34
|
+
- README.txt
|
35
|
+
- composite_sexp_processor.rb
|
36
|
+
- parse_tree.rb
|
37
|
+
- parse_tree_abc
|
38
|
+
- parse_tree_show
|
39
|
+
- sexp_processor.rb
|
40
|
+
- something.rb
|
41
|
+
- test_all.rb
|
42
|
+
- test_composite_sexp_processor.rb
|
43
|
+
- test_parse_tree.rb
|
44
|
+
- test_sexp_processor.rb
|
45
|
+
test_files:
|
46
|
+
- test_all.rb
|
47
|
+
rdoc_options: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
executables:
|
50
|
+
- parse_tree_abc
|
51
|
+
- parse_tree_show
|
52
|
+
extensions: []
|
53
|
+
requirements:
|
54
|
+
- RubyInline.
|
55
|
+
dependencies: []
|