poetics 0.0.1
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/.gitignore +5 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README +87 -0
- data/Rakefile +21 -0
- data/bin/poetics +140 -0
- data/lib/poetics.rb +4 -0
- data/lib/poetics/library.rb +1 -0
- data/lib/poetics/library/code_loader.rb +13 -0
- data/lib/poetics/parser.rb +21 -0
- data/lib/poetics/parser/parser.rb +875 -0
- data/lib/poetics/parser/poetics.kpeg +42 -0
- data/lib/poetics/syntax.rb +3 -0
- data/lib/poetics/syntax/ast.rb +31 -0
- data/lib/poetics/syntax/literal.rb +65 -0
- data/lib/poetics/syntax/node.rb +15 -0
- data/lib/poetics/version.rb +5 -0
- data/poetics.gemspec +23 -0
- data/spec/custom.rb +4 -0
- data/spec/custom/matchers/parse_as.rb +21 -0
- data/spec/custom/runner/relates.rb +97 -0
- data/spec/custom/utils/options.rb +21 -0
- data/spec/custom/utils/script.rb +26 -0
- data/spec/default.mspec +6 -0
- data/spec/spec_helper.rb +3 -0
- data/spec/syntax/literal_spec.rb +60 -0
- metadata +98 -0
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: poetics
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Brian Ford
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-05-02 00:00:00 -07:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: |
|
22
|
+
Poetics implements CoffeeScript (http://jashkenas.github.com/coffee-script/)
|
23
|
+
directly on the Rubinius VM (http://rubini.us). It includes a REPL for
|
24
|
+
exploratory programming, as well as executing CoffeeScript scripts directly.
|
25
|
+
|
26
|
+
email:
|
27
|
+
- brixen@gmail.com
|
28
|
+
executables:
|
29
|
+
- poetics
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files: []
|
33
|
+
|
34
|
+
files:
|
35
|
+
- .gitignore
|
36
|
+
- Gemfile
|
37
|
+
- LICENSE
|
38
|
+
- README
|
39
|
+
- Rakefile
|
40
|
+
- bin/poetics
|
41
|
+
- lib/poetics.rb
|
42
|
+
- lib/poetics/library.rb
|
43
|
+
- lib/poetics/library/code_loader.rb
|
44
|
+
- lib/poetics/parser.rb
|
45
|
+
- lib/poetics/parser/parser.rb
|
46
|
+
- lib/poetics/parser/poetics.kpeg
|
47
|
+
- lib/poetics/syntax.rb
|
48
|
+
- lib/poetics/syntax/ast.rb
|
49
|
+
- lib/poetics/syntax/literal.rb
|
50
|
+
- lib/poetics/syntax/node.rb
|
51
|
+
- lib/poetics/version.rb
|
52
|
+
- poetics.gemspec
|
53
|
+
- spec/custom.rb
|
54
|
+
- spec/custom/matchers/parse_as.rb
|
55
|
+
- spec/custom/runner/relates.rb
|
56
|
+
- spec/custom/utils/options.rb
|
57
|
+
- spec/custom/utils/script.rb
|
58
|
+
- spec/default.mspec
|
59
|
+
- spec/spec_helper.rb
|
60
|
+
- spec/syntax/literal_spec.rb
|
61
|
+
has_rdoc: true
|
62
|
+
homepage: https://github.com/brixen/poetics
|
63
|
+
licenses: []
|
64
|
+
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
segments:
|
75
|
+
- 0
|
76
|
+
version: "0"
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
segments:
|
82
|
+
- 0
|
83
|
+
version: "0"
|
84
|
+
requirements: []
|
85
|
+
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 1.3.6
|
88
|
+
signing_key:
|
89
|
+
specification_version: 3
|
90
|
+
summary: A native implementation of CoffeeScript on the Rubinius VM
|
91
|
+
test_files:
|
92
|
+
- spec/custom/matchers/parse_as.rb
|
93
|
+
- spec/custom/runner/relates.rb
|
94
|
+
- spec/custom/utils/options.rb
|
95
|
+
- spec/custom/utils/script.rb
|
96
|
+
- spec/custom.rb
|
97
|
+
- spec/spec_helper.rb
|
98
|
+
- spec/syntax/literal_spec.rb
|