rubinius-ast 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/rubinius/ast/constants.rb +324 -0
- data/lib/rubinius/ast/control_flow.rb +698 -0
- data/lib/rubinius/ast/data.rb +30 -0
- data/lib/rubinius/ast/definitions.rb +1134 -0
- data/lib/rubinius/ast/encoding.rb +26 -0
- data/lib/rubinius/ast/exceptions.rb +545 -0
- data/lib/rubinius/ast/file.rb +18 -0
- data/lib/rubinius/ast/grapher.rb +89 -0
- data/lib/rubinius/ast/literals.rb +555 -0
- data/lib/rubinius/ast/node.rb +389 -0
- data/lib/rubinius/ast/operators.rb +394 -0
- data/lib/rubinius/ast/self.rb +25 -0
- data/lib/rubinius/ast/sends.rb +1028 -0
- data/lib/rubinius/ast/transforms.rb +371 -0
- data/lib/rubinius/ast/values.rb +182 -0
- data/lib/rubinius/ast/variables.rb +842 -0
- data/lib/rubinius/ast/version.rb +5 -0
- data/lib/rubinius/ast.rb +18 -0
- data/rubinius-ast.gemspec +22 -0
- metadata +96 -0
data/lib/rubinius/ast.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# -*- encoding: us-ascii -*-
|
2
|
+
|
3
|
+
require "rubinius/ast/node"
|
4
|
+
require "rubinius/ast/self"
|
5
|
+
require "rubinius/ast/constants"
|
6
|
+
require "rubinius/ast/control_flow"
|
7
|
+
require "rubinius/ast/data"
|
8
|
+
require "rubinius/ast/definitions"
|
9
|
+
require "rubinius/ast/encoding"
|
10
|
+
require "rubinius/ast/exceptions"
|
11
|
+
require "rubinius/ast/file"
|
12
|
+
require "rubinius/ast/grapher"
|
13
|
+
require "rubinius/ast/literals"
|
14
|
+
require "rubinius/ast/operators"
|
15
|
+
require "rubinius/ast/sends"
|
16
|
+
require "rubinius/ast/values"
|
17
|
+
require "rubinius/ast/variables"
|
18
|
+
require "rubinius/ast/transforms"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
require 'rubinius/toolset'
|
3
|
+
require './lib/rubinius/ast/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "rubinius-ast"
|
7
|
+
spec.version = Rubinius::ToolSet.current::TS::AST::VERSION
|
8
|
+
spec.authors = ["Brian Shirai"]
|
9
|
+
spec.email = ["brixen@gmail.com"]
|
10
|
+
spec.description = %q{An Abstract Syntax Tree for Ruby.}
|
11
|
+
spec.summary = %q{An Abstract Syntax Tree for Ruby.}
|
12
|
+
spec.homepage = "https://github.com/rubinius/rubinius-ast"
|
13
|
+
spec.license = "BSD"
|
14
|
+
|
15
|
+
spec.files = `git ls-files`.split($/)
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
21
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubinius-ast
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brian Shirai
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-08-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: An Abstract Syntax Tree for Ruby.
|
42
|
+
email:
|
43
|
+
- brixen@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/rubinius/ast.rb
|
54
|
+
- lib/rubinius/ast/constants.rb
|
55
|
+
- lib/rubinius/ast/control_flow.rb
|
56
|
+
- lib/rubinius/ast/data.rb
|
57
|
+
- lib/rubinius/ast/definitions.rb
|
58
|
+
- lib/rubinius/ast/encoding.rb
|
59
|
+
- lib/rubinius/ast/exceptions.rb
|
60
|
+
- lib/rubinius/ast/file.rb
|
61
|
+
- lib/rubinius/ast/grapher.rb
|
62
|
+
- lib/rubinius/ast/literals.rb
|
63
|
+
- lib/rubinius/ast/node.rb
|
64
|
+
- lib/rubinius/ast/operators.rb
|
65
|
+
- lib/rubinius/ast/self.rb
|
66
|
+
- lib/rubinius/ast/sends.rb
|
67
|
+
- lib/rubinius/ast/transforms.rb
|
68
|
+
- lib/rubinius/ast/values.rb
|
69
|
+
- lib/rubinius/ast/variables.rb
|
70
|
+
- lib/rubinius/ast/version.rb
|
71
|
+
- rubinius-ast.gemspec
|
72
|
+
homepage: https://github.com/rubinius/rubinius-ast
|
73
|
+
licenses:
|
74
|
+
- BSD
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 2.0.7
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: An Abstract Syntax Tree for Ruby.
|
96
|
+
test_files: []
|