wlang 0.10.2 → 2.0.0.beta
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +3 -121
- data/Gemfile +23 -1
- data/Gemfile.lock +32 -28
- data/LICENCE.md +18 -21
- data/Manifest.txt +4 -5
- data/README.md +100 -174
- data/Rakefile +1 -13
- data/bin/wlang +3 -29
- data/lib/wlang.rb +21 -394
- data/lib/wlang/command.rb +94 -0
- data/lib/wlang/compiler.rb +78 -0
- data/lib/wlang/compiler/autospacing.rb +60 -0
- data/lib/wlang/compiler/dialect_enforcer.rb +91 -0
- data/lib/wlang/compiler/filter.rb +32 -0
- data/lib/wlang/compiler/grammar.citrus +67 -0
- data/lib/wlang/compiler/parser.rb +26 -0
- data/lib/wlang/compiler/proc_call_removal.rb +15 -0
- data/lib/wlang/compiler/static_merger.rb +28 -0
- data/lib/wlang/compiler/strconcat_flattener.rb +25 -0
- data/lib/wlang/compiler/to_ruby_abstraction.rb +22 -0
- data/lib/wlang/compiler/to_ruby_code.rb +55 -0
- data/lib/wlang/dialect.rb +40 -237
- data/lib/wlang/dialect/dispatching.rb +51 -0
- data/lib/wlang/dialect/evaluation.rb +30 -0
- data/lib/wlang/dialect/tags.rb +50 -0
- data/lib/wlang/dummy.rb +32 -0
- data/lib/wlang/html.rb +106 -0
- data/lib/wlang/loader.rb +6 -0
- data/lib/wlang/mustang.rb +90 -0
- data/lib/wlang/scope.rb +57 -0
- data/lib/wlang/scope/binding_scope.rb +18 -0
- data/lib/wlang/scope/object_scope.rb +25 -0
- data/lib/wlang/scope/proxy_scope.rb +18 -0
- data/lib/wlang/scope/root_scope.rb +24 -0
- data/lib/wlang/template.rb +16 -86
- data/lib/wlang/version.rb +9 -8
- data/spec/fixtures/dialect/foobar.rb +31 -0
- data/spec/fixtures/dialect/upcasing.rb +13 -0
- data/spec/fixtures/templates/hello.tpl +1 -0
- data/spec/integration/examples/1-basics.txt +65 -0
- data/spec/integration/examples/2-imperative.txt +51 -0
- data/spec/integration/examples/3-partials.txt +76 -0
- data/spec/integration/examples/4-recursion.txt +16 -0
- data/spec/integration/html/test_ampersand.rb +15 -0
- data/spec/integration/html/test_bang.rb +38 -0
- data/spec/integration/html/test_caret.rb +33 -0
- data/spec/integration/html/test_dollar.rb +16 -0
- data/spec/integration/html/test_greater.rb +23 -0
- data/spec/integration/html/test_modulo.rb +16 -0
- data/spec/integration/html/test_plus.rb +48 -0
- data/spec/integration/html/test_question.rb +33 -0
- data/spec/integration/html/test_sharp.rb +21 -0
- data/spec/integration/html/test_slash.rb +16 -0
- data/spec/integration/html/test_star.rb +37 -0
- data/spec/integration/test_dummy.rb +51 -0
- data/spec/integration/test_examples.rb +29 -0
- data/spec/integration/test_mustang.rb +120 -0
- data/spec/integration/test_readme.rb +56 -0
- data/spec/integration/test_upcasing.rb +22 -0
- data/spec/spec_helper.rb +62 -1
- data/spec/test_wlang.rb +101 -0
- data/spec/unit/compiler/autospacing/test_right_strip.rb +30 -0
- data/spec/unit/compiler/autospacing/test_unindent.rb +30 -0
- data/spec/unit/compiler/test_dialect_enforcer.rb +168 -0
- data/spec/unit/compiler/test_grammar.rb +207 -0
- data/spec/unit/compiler/test_parser.rb +69 -0
- data/spec/unit/compiler/test_proc_call_removal.rb +24 -0
- data/spec/unit/compiler/test_static_merger.rb +29 -0
- data/spec/unit/compiler/test_strconcat_flattener.rb +30 -0
- data/spec/unit/compiler/test_to_ruby_abstraction.rb +59 -0
- data/spec/unit/compiler/test_to_ruby_code.rb +24 -0
- data/spec/unit/dialect/test_compile.rb +52 -0
- data/spec/unit/dialect/test_dispatching.rb +19 -0
- data/spec/unit/dialect/test_evaluate.rb +41 -0
- data/spec/unit/dialect/test_render.rb +33 -0
- data/spec/unit/dialect/test_tags.rb +32 -0
- data/spec/unit/dialect/test_with_scope.rb +18 -0
- data/spec/unit/scope/test_binding_scope.rb +27 -0
- data/spec/unit/scope/test_coerce.rb +22 -0
- data/spec/unit/scope/test_object_scope.rb +38 -0
- data/spec/unit/scope/test_proxy_scope.rb +22 -0
- data/spec/unit/scope/test_root_scope.rb +22 -0
- data/spec/unit/test_assumptions.rb +29 -0
- data/spec/unit/test_scope.rb +57 -0
- data/tasks/debug_mail.rake +42 -45
- data/tasks/gem.rake +22 -17
- data/tasks/spec_test.rake +9 -17
- data/tasks/unit_test.rake +11 -12
- data/tasks/yard.rake +13 -13
- data/wlang.gemspec +36 -32
- data/wlang.noespec +27 -35
- metadata +268 -451
- data/doc/specification/about.rdoc +0 -61
- data/doc/specification/analytics.wtpl +0 -13
- data/doc/specification/dialect.wtpl +0 -14
- data/doc/specification/dialects.wtpl +0 -3
- data/doc/specification/examples.rb +0 -3
- data/doc/specification/glossary.wtpl +0 -14
- data/doc/specification/hosting.rdoc +0 -0
- data/doc/specification/overview.rdoc +0 -116
- data/doc/specification/rulesets.wtpl +0 -87
- data/doc/specification/specification.css +0 -53
- data/doc/specification/specification.html +0 -1690
- data/doc/specification/specification.js +0 -8
- data/doc/specification/specification.wtpl +0 -42
- data/doc/specification/specification.yml +0 -432
- data/doc/specification/symbols.wtpl +0 -16
- data/lib/wlang/dialect_dsl.rb +0 -141
- data/lib/wlang/dialect_loader.rb +0 -74
- data/lib/wlang/dialects/bluecloth_dialect.rb +0 -16
- data/lib/wlang/dialects/coderay_dialect.rb +0 -45
- data/lib/wlang/dialects/hosted_dialect.rb +0 -50
- data/lib/wlang/dialects/plain_text_dialect.rb +0 -69
- data/lib/wlang/dialects/rdoc_dialect.rb +0 -33
- data/lib/wlang/dialects/redcloth_dialect.rb +0 -16
- data/lib/wlang/dialects/ruby_dialect.rb +0 -118
- data/lib/wlang/dialects/sql_dialect.rb +0 -38
- data/lib/wlang/dialects/standard_dialects.rb +0 -181
- data/lib/wlang/dialects/xhtml_dialect.rb +0 -63
- data/lib/wlang/dialects/yaml_dialect.rb +0 -30
- data/lib/wlang/encoder.rb +0 -62
- data/lib/wlang/encoder_set.rb +0 -122
- data/lib/wlang/errors.rb +0 -80
- data/lib/wlang/ext/hash_methodize.rb +0 -13
- data/lib/wlang/ext/string.rb +0 -44
- data/lib/wlang/hash_scope.rb +0 -89
- data/lib/wlang/hosted_language.rb +0 -146
- data/lib/wlang/intelligent_buffer.rb +0 -94
- data/lib/wlang/parser.rb +0 -332
- data/lib/wlang/parser_state.rb +0 -94
- data/lib/wlang/rule.rb +0 -66
- data/lib/wlang/rule_set.rb +0 -106
- data/lib/wlang/rulesets/basic_ruleset.rb +0 -83
- data/lib/wlang/rulesets/buffering_ruleset.rb +0 -115
- data/lib/wlang/rulesets/context_ruleset.rb +0 -111
- data/lib/wlang/rulesets/encoding_ruleset.rb +0 -73
- data/lib/wlang/rulesets/imperative_ruleset.rb +0 -132
- data/lib/wlang/rulesets/ruleset_utils.rb +0 -317
- data/lib/wlang/wlang_command.rb +0 -51
- data/lib/wlang/wlang_command_options.rb +0 -163
- data/spec/basic_object.spec +0 -40
- data/spec/coderay_dialect.spec +0 -8
- data/spec/dialect/apply_post_transform.spec +0 -16
- data/spec/global_extensions.rb +0 -2
- data/spec/hash_scope.spec +0 -76
- data/spec/redcloth_dialect.spec +0 -24
- data/spec/test_all.rb +0 -8
- data/spec/wlang.spec +0 -53
- data/spec/wlang_spec.rb +0 -8
- data/spec/xhtml_dialect.spec +0 -22
- data/tasks/genspec.rake +0 -5
- data/test/blackbox/basic/execution_1.exp +0 -1
- data/test/blackbox/basic/execution_1.tpl +0 -1
- data/test/blackbox/basic/execution_2.exp +0 -1
- data/test/blackbox/basic/execution_2.tpl +0 -1
- data/test/blackbox/basic/execution_3.exp +0 -1
- data/test/blackbox/basic/execution_3.tpl +0 -1
- data/test/blackbox/basic/execution_4.exp +0 -1
- data/test/blackbox/basic/execution_4.tpl +0 -1
- data/test/blackbox/basic/inclusion_1.exp +0 -1
- data/test/blackbox/basic/inclusion_1.tpl +0 -1
- data/test/blackbox/basic/inclusion_2.exp +0 -1
- data/test/blackbox/basic/inclusion_2.tpl +0 -1
- data/test/blackbox/basic/injection_1.exp +0 -1
- data/test/blackbox/basic/injection_1.tpl +0 -1
- data/test/blackbox/basic/injection_2.exp +0 -1
- data/test/blackbox/basic/injection_2.tpl +0 -1
- data/test/blackbox/basic/modulation_1.exp +0 -1
- data/test/blackbox/basic/modulation_1.tpl +0 -1
- data/test/blackbox/basic/modulation_2.exp +0 -1
- data/test/blackbox/basic/modulation_2.tpl +0 -1
- data/test/blackbox/basic/recursive_app_1.exp +0 -1
- data/test/blackbox/basic/recursive_app_1.tpl +0 -1
- data/test/blackbox/basic/recursive_app_2.exp +0 -1
- data/test/blackbox/basic/recursive_app_2.tpl +0 -1
- data/test/blackbox/buffering/data_1.rb +0 -1
- data/test/blackbox/buffering/data_assignment_1.exp +0 -1
- data/test/blackbox/buffering/data_assignment_1.tpl +0 -1
- data/test/blackbox/buffering/data_assignment_2.exp +0 -1
- data/test/blackbox/buffering/data_assignment_2.tpl +0 -1
- data/test/blackbox/buffering/data_assignment_3.exp +0 -1
- data/test/blackbox/buffering/data_assignment_3.tpl +0 -1
- data/test/blackbox/buffering/data_assignment_4.exp +0 -1
- data/test/blackbox/buffering/data_assignment_4.tpl +0 -1
- data/test/blackbox/buffering/input_1.exp +0 -1
- data/test/blackbox/buffering/input_1.tpl +0 -1
- data/test/blackbox/buffering/input_2.exp +0 -1
- data/test/blackbox/buffering/input_2.tpl +0 -1
- data/test/blackbox/buffering/input_3.exp +0 -1
- data/test/blackbox/buffering/input_3.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion.exp +0 -1
- data/test/blackbox/buffering/input_inclusion.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_1.exp +0 -0
- data/test/blackbox/buffering/input_inclusion_1.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_2.exp +0 -1
- data/test/blackbox/buffering/input_inclusion_2.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_3.exp +0 -1
- data/test/blackbox/buffering/input_inclusion_3.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_4.exp +0 -0
- data/test/blackbox/buffering/input_inclusion_4.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_5.exp +0 -1
- data/test/blackbox/buffering/input_inclusion_5.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_6.exp +0 -1
- data/test/blackbox/buffering/input_inclusion_6.tpl +0 -1
- data/test/blackbox/buffering/input_inclusion_7.exp +0 -0
- data/test/blackbox/buffering/input_inclusion_7.tpl +0 -1
- data/test/blackbox/buffering/text_1.txt +0 -1
- data/test/blackbox/buffering/wlang.txt +0 -1
- data/test/blackbox/context/assignment_1.exp +0 -1
- data/test/blackbox/context/assignment_1.tpl +0 -1
- data/test/blackbox/context/assignment_2.exp +0 -1
- data/test/blackbox/context/assignment_2.tpl +0 -1
- data/test/blackbox/context/assignment_3.exp +0 -2
- data/test/blackbox/context/assignment_3.tpl +0 -2
- data/test/blackbox/context/assignment_4.exp +0 -1
- data/test/blackbox/context/assignment_4.tpl +0 -1
- data/test/blackbox/context/block_assignment_1.exp +0 -1
- data/test/blackbox/context/block_assignment_1.tpl +0 -1
- data/test/blackbox/context/block_assignment_2.exp +0 -1
- data/test/blackbox/context/block_assignment_2.tpl +0 -1
- data/test/blackbox/context/modulo_assignment_1.exp +0 -1
- data/test/blackbox/context/modulo_assignment_1.tpl +0 -1
- data/test/blackbox/context/modulo_assignment_2.exp +0 -1
- data/test/blackbox/context/modulo_assignment_2.tpl +0 -1
- data/test/blackbox/data_1.rb +0 -1
- data/test/blackbox/postblock/hello.exp +0 -1
- data/test/blackbox/postblock/hello.pre +0 -1
- data/test/blackbox/postblock/hello.tpl +0 -1
- data/test/blackbox/postblock/hello_input_inclusion.exp +0 -1
- data/test/blackbox/postblock/hello_input_inclusion.tpl +0 -1
- data/test/blackbox/postblock/hello_to_authors.exp +0 -1
- data/test/blackbox/postblock/hello_to_authors.tpl +0 -1
- data/test/blackbox/poststring/hello.exp +0 -1
- data/test/blackbox/poststring/hello.tpl +0 -1
- data/test/blackbox/test_all.rb +0 -70
- data/test/standard_dialects/ruby/data.rb +0 -7
- data/test/standard_dialects/ruby/inclusion.exp +0 -6
- data/test/standard_dialects/ruby/inclusion.tpl +0 -6
- data/test/standard_dialects/test_all.rb +0 -29
- data/test/standard_dialects/yaml/assumptions_test.rb +0 -13
- data/test/standard_dialects/yaml/data.rb +0 -3
- data/test/standard_dialects/yaml/inclusion_1.exp +0 -7
- data/test/standard_dialects/yaml/inclusion_1.tpl +0 -2
- data/test/standard_dialects/yaml/inclusion_2.exp +0 -5
- data/test/standard_dialects/yaml/inclusion_2.tpl +0 -3
- data/test/unit/test_all.rb +0 -9
- data/test/unit/wlang/anagram_bugs_test.rb +0 -111
- data/test/unit/wlang/basic_ruleset_test.rb +0 -52
- data/test/unit/wlang/buffering_ruleset_test.rb +0 -102
- data/test/unit/wlang/buffering_template1.wtpl +0 -1
- data/test/unit/wlang/buffering_template2.wtpl +0 -1
- data/test/unit/wlang/buffering_template3.wtpl +0 -1
- data/test/unit/wlang/buffering_template4.wtpl +0 -1
- data/test/unit/wlang/buffering_template5.wtpl +0 -1
- data/test/unit/wlang/context_ruleset_test.rb +0 -32
- data/test/unit/wlang/data.rb +0 -3
- data/test/unit/wlang/encoder_set_test.rb +0 -42
- data/test/unit/wlang/imperative_ruleset_test.rb +0 -107
- data/test/unit/wlang/intelligent_buffer_test.rb +0 -194
- data/test/unit/wlang/othersymbols_test.rb +0 -16
- data/test/unit/wlang/parser_test.rb +0 -88
- data/test/unit/wlang/plain_text_dialect_test.rb +0 -21
- data/test/unit/wlang/ruby_dialect_test.rb +0 -100
- data/test/unit/wlang/ruby_expected.rb +0 -3
- data/test/unit/wlang/ruby_template.wrb +0 -3
- data/test/unit/wlang/ruleset_utils_test.rb +0 -245
- data/test/unit/wlang/specification_examples_test.rb +0 -54
- data/test/unit/wlang/test_utils.rb +0 -25
- data/test/unit/wlang/wlang_test.rb +0 -80
metadata
CHANGED
@@ -1,523 +1,340 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: wlang
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 10
|
9
|
-
- 2
|
10
|
-
version: 0.10.2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0.beta
|
5
|
+
prerelease: 6
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Bernard Lambeau
|
14
9
|
- Louis Lambeau
|
15
10
|
autorequire:
|
16
11
|
bindir: bin
|
17
12
|
cert_chain: []
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
13
|
+
date: 2012-06-01 00:00:00.000000000Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: ruby-prof
|
17
|
+
requirement: &70335748964040 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.11.2
|
23
23
|
type: :development
|
24
|
-
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *70335748964040
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: mustache
|
28
|
+
requirement: &70335748962060 !ruby/object:Gem::Requirement
|
25
29
|
none: false
|
26
|
-
requirements:
|
30
|
+
requirements:
|
27
31
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
version: 0.8.7
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.99.4
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *70335748962060
|
37
|
+
- !ruby/object:Gem::Dependency
|
35
38
|
name: rake
|
36
|
-
|
39
|
+
requirement: &70335748960500 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ~>
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 0.9.2
|
45
|
+
type: :development
|
37
46
|
prerelease: false
|
38
|
-
|
47
|
+
version_requirements: *70335748960500
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: bundler
|
50
|
+
requirement: &70335748958700 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '1.0'
|
39
56
|
type: :development
|
40
|
-
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *70335748958700
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: rspec
|
61
|
+
requirement: &70335748956940 !ruby/object:Gem::Requirement
|
41
62
|
none: false
|
42
|
-
requirements:
|
63
|
+
requirements:
|
43
64
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
|
47
|
-
- 1
|
48
|
-
- 0
|
49
|
-
version: "1.0"
|
50
|
-
name: bundler
|
51
|
-
version_requirements: *id002
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 2.10.0
|
67
|
+
type: :development
|
52
68
|
prerelease: false
|
53
|
-
|
69
|
+
version_requirements: *70335748956940
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: epath
|
72
|
+
requirement: &70335748940940 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.1.0
|
54
78
|
type: :development
|
55
|
-
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *70335748940940
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: yard
|
83
|
+
requirement: &70335748940200 !ruby/object:Gem::Requirement
|
56
84
|
none: false
|
57
|
-
requirements:
|
85
|
+
requirements:
|
58
86
|
- - ~>
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
|
61
|
-
|
62
|
-
- 2
|
63
|
-
- 4
|
64
|
-
- 0
|
65
|
-
version: 2.4.0
|
66
|
-
name: rspec
|
67
|
-
version_requirements: *id003
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 0.8.1
|
89
|
+
type: :development
|
68
90
|
prerelease: false
|
69
|
-
|
91
|
+
version_requirements: *70335748940200
|
92
|
+
- !ruby/object:Gem::Dependency
|
93
|
+
name: bluecloth
|
94
|
+
requirement: &70335748939300 !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
96
|
+
requirements:
|
97
|
+
- - ~>
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 2.2.0
|
70
100
|
type: :development
|
71
|
-
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: *70335748939300
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: citrus
|
105
|
+
requirement: &70335748938360 !ruby/object:Gem::Requirement
|
72
106
|
none: false
|
73
|
-
requirements:
|
107
|
+
requirements:
|
74
108
|
- - ~>
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
|
77
|
-
|
78
|
-
- 0
|
79
|
-
- 6
|
80
|
-
- 4
|
81
|
-
version: 0.6.4
|
82
|
-
name: yard
|
83
|
-
version_requirements: *id004
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.4.1
|
111
|
+
type: :runtime
|
84
112
|
prerelease: false
|
85
|
-
|
86
|
-
|
87
|
-
|
113
|
+
version_requirements: *70335748938360
|
114
|
+
- !ruby/object:Gem::Dependency
|
115
|
+
name: temple
|
116
|
+
requirement: &70335748937360 !ruby/object:Gem::Requirement
|
88
117
|
none: false
|
89
|
-
requirements:
|
118
|
+
requirements:
|
90
119
|
- - ~>
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
|
93
|
-
|
94
|
-
- 2
|
95
|
-
- 0
|
96
|
-
- 9
|
97
|
-
version: 2.0.9
|
98
|
-
name: bluecloth
|
99
|
-
version_requirements: *id005
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: 0.4.0
|
122
|
+
type: :runtime
|
100
123
|
prerelease: false
|
101
|
-
|
102
|
-
|
103
|
-
|
124
|
+
version_requirements: *70335748937360
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: backports
|
127
|
+
requirement: &70335748936160 !ruby/object:Gem::Requirement
|
104
128
|
none: false
|
105
|
-
requirements:
|
106
|
-
- -
|
107
|
-
- !ruby/object:Gem::Version
|
108
|
-
|
109
|
-
|
110
|
-
- 0
|
111
|
-
version: "0"
|
112
|
-
name: rdoc
|
113
|
-
version_requirements: *id006
|
129
|
+
requirements:
|
130
|
+
- - ~>
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 2.6.1
|
133
|
+
type: :runtime
|
114
134
|
prerelease: false
|
115
|
-
|
116
|
-
|
117
|
-
|
135
|
+
version_requirements: *70335748936160
|
136
|
+
- !ruby/object:Gem::Dependency
|
137
|
+
name: quickl
|
138
|
+
requirement: &70335748934880 !ruby/object:Gem::Requirement
|
118
139
|
none: false
|
119
|
-
requirements:
|
120
|
-
- -
|
121
|
-
- !ruby/object:Gem::Version
|
122
|
-
|
123
|
-
|
124
|
-
- 0
|
125
|
-
version: "0"
|
126
|
-
name: coderay
|
127
|
-
version_requirements: *id007
|
140
|
+
requirements:
|
141
|
+
- - ~>
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: 0.4.3
|
144
|
+
type: :runtime
|
128
145
|
prerelease: false
|
129
|
-
|
130
|
-
|
131
|
-
|
146
|
+
version_requirements: *70335748934880
|
147
|
+
- !ruby/object:Gem::Dependency
|
148
|
+
name: awesome_print
|
149
|
+
requirement: &70335748933680 !ruby/object:Gem::Requirement
|
132
150
|
none: false
|
133
|
-
requirements:
|
134
|
-
- -
|
135
|
-
- !ruby/object:Gem::Version
|
136
|
-
|
137
|
-
|
138
|
-
- 0
|
139
|
-
version: "0"
|
140
|
-
name: RedCloth
|
141
|
-
version_requirements: *id008
|
151
|
+
requirements:
|
152
|
+
- - ~>
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: 1.0.2
|
155
|
+
type: :runtime
|
142
156
|
prerelease: false
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
157
|
+
version_requirements: *70335748933680
|
158
|
+
description: ! "WLang is a general-purpose *code generation*/*templating engine*.
|
159
|
+
It's main aim is to help you generating\nweb pages, sql queries, ruby code (that
|
160
|
+
is, generating code in general) without having to worry too much \nabout html entities
|
161
|
+
encoding, sql back quoting, string escaping and the like. WLang proposes a generic
|
162
|
+
\nengine that you can extend to fit your needs. It also proposes standard instantiations
|
163
|
+
of this engine \nfor common tasks such as creating SQL queries, instantiating web
|
164
|
+
pages, and so on."
|
165
|
+
email:
|
150
166
|
- blambeau@gmail.com
|
151
167
|
- llambeau@gmail.com
|
152
|
-
executables:
|
168
|
+
executables:
|
153
169
|
- wlang
|
154
170
|
extensions: []
|
155
|
-
|
156
|
-
extra_rdoc_files:
|
171
|
+
extra_rdoc_files:
|
157
172
|
- README.md
|
158
173
|
- CHANGELOG.md
|
159
174
|
- LICENCE.md
|
160
|
-
files:
|
161
|
-
-
|
175
|
+
files:
|
176
|
+
- wlang.gemspec
|
177
|
+
- wlang.noespec
|
162
178
|
- CHANGELOG.md
|
163
|
-
- doc/specification/about.rdoc
|
164
|
-
- doc/specification/analytics.wtpl
|
165
|
-
- doc/specification/dialect.wtpl
|
166
|
-
- doc/specification/dialects.wtpl
|
167
|
-
- doc/specification/examples.rb
|
168
|
-
- doc/specification/glossary.wtpl
|
169
|
-
- doc/specification/hosting.rdoc
|
170
|
-
- doc/specification/overview.rdoc
|
171
|
-
- doc/specification/rulesets.wtpl
|
172
|
-
- doc/specification/specification.css
|
173
|
-
- doc/specification/specification.html
|
174
|
-
- doc/specification/specification.js
|
175
|
-
- doc/specification/specification.wtpl
|
176
|
-
- doc/specification/specification.yml
|
177
|
-
- doc/specification/symbols.wtpl
|
178
179
|
- Gemfile
|
179
180
|
- Gemfile.lock
|
181
|
+
- bin/wlang
|
182
|
+
- lib/wlang/command.rb
|
183
|
+
- lib/wlang/compiler/autospacing.rb
|
184
|
+
- lib/wlang/compiler/dialect_enforcer.rb
|
185
|
+
- lib/wlang/compiler/filter.rb
|
186
|
+
- lib/wlang/compiler/grammar.citrus
|
187
|
+
- lib/wlang/compiler/parser.rb
|
188
|
+
- lib/wlang/compiler/proc_call_removal.rb
|
189
|
+
- lib/wlang/compiler/static_merger.rb
|
190
|
+
- lib/wlang/compiler/strconcat_flattener.rb
|
191
|
+
- lib/wlang/compiler/to_ruby_abstraction.rb
|
192
|
+
- lib/wlang/compiler/to_ruby_code.rb
|
193
|
+
- lib/wlang/compiler.rb
|
194
|
+
- lib/wlang/dialect/dispatching.rb
|
195
|
+
- lib/wlang/dialect/evaluation.rb
|
196
|
+
- lib/wlang/dialect/tags.rb
|
180
197
|
- lib/wlang/dialect.rb
|
181
|
-
- lib/wlang/
|
182
|
-
- lib/wlang/
|
183
|
-
- lib/wlang/dialects/bluecloth_dialect.rb
|
184
|
-
- lib/wlang/dialects/coderay_dialect.rb
|
185
|
-
- lib/wlang/dialects/hosted_dialect.rb
|
186
|
-
- lib/wlang/dialects/plain_text_dialect.rb
|
187
|
-
- lib/wlang/dialects/rdoc_dialect.rb
|
188
|
-
- lib/wlang/dialects/redcloth_dialect.rb
|
189
|
-
- lib/wlang/dialects/ruby_dialect.rb
|
190
|
-
- lib/wlang/dialects/sql_dialect.rb
|
191
|
-
- lib/wlang/dialects/standard_dialects.rb
|
192
|
-
- lib/wlang/dialects/xhtml_dialect.rb
|
193
|
-
- lib/wlang/dialects/yaml_dialect.rb
|
194
|
-
- lib/wlang/encoder.rb
|
195
|
-
- lib/wlang/encoder_set.rb
|
196
|
-
- lib/wlang/errors.rb
|
197
|
-
- lib/wlang/ext/hash_methodize.rb
|
198
|
-
- lib/wlang/ext/string.rb
|
199
|
-
- lib/wlang/hash_scope.rb
|
200
|
-
- lib/wlang/hosted_language.rb
|
201
|
-
- lib/wlang/intelligent_buffer.rb
|
198
|
+
- lib/wlang/dummy.rb
|
199
|
+
- lib/wlang/html.rb
|
202
200
|
- lib/wlang/loader.rb
|
203
|
-
- lib/wlang/
|
204
|
-
- lib/wlang/
|
205
|
-
- lib/wlang/
|
206
|
-
- lib/wlang/
|
207
|
-
- lib/wlang/
|
208
|
-
- lib/wlang/
|
209
|
-
- lib/wlang/rulesets/context_ruleset.rb
|
210
|
-
- lib/wlang/rulesets/encoding_ruleset.rb
|
211
|
-
- lib/wlang/rulesets/imperative_ruleset.rb
|
212
|
-
- lib/wlang/rulesets/ruleset_utils.rb
|
201
|
+
- lib/wlang/mustang.rb
|
202
|
+
- lib/wlang/scope/binding_scope.rb
|
203
|
+
- lib/wlang/scope/object_scope.rb
|
204
|
+
- lib/wlang/scope/proxy_scope.rb
|
205
|
+
- lib/wlang/scope/root_scope.rb
|
206
|
+
- lib/wlang/scope.rb
|
213
207
|
- lib/wlang/template.rb
|
214
208
|
- lib/wlang/version.rb
|
215
|
-
- lib/wlang/wlang_command.rb
|
216
|
-
- lib/wlang/wlang_command_options.rb
|
217
209
|
- lib/wlang.rb
|
218
210
|
- LICENCE.md
|
219
211
|
- Manifest.txt
|
220
212
|
- Rakefile
|
221
213
|
- README.md
|
222
|
-
- spec/
|
223
|
-
- spec/
|
224
|
-
- spec/
|
225
|
-
- spec/
|
226
|
-
- spec/
|
227
|
-
- spec/
|
214
|
+
- spec/fixtures/dialect/foobar.rb
|
215
|
+
- spec/fixtures/dialect/upcasing.rb
|
216
|
+
- spec/fixtures/templates/hello.tpl
|
217
|
+
- spec/integration/examples/1-basics.txt
|
218
|
+
- spec/integration/examples/2-imperative.txt
|
219
|
+
- spec/integration/examples/3-partials.txt
|
220
|
+
- spec/integration/examples/4-recursion.txt
|
221
|
+
- spec/integration/html/test_ampersand.rb
|
222
|
+
- spec/integration/html/test_bang.rb
|
223
|
+
- spec/integration/html/test_caret.rb
|
224
|
+
- spec/integration/html/test_dollar.rb
|
225
|
+
- spec/integration/html/test_greater.rb
|
226
|
+
- spec/integration/html/test_modulo.rb
|
227
|
+
- spec/integration/html/test_plus.rb
|
228
|
+
- spec/integration/html/test_question.rb
|
229
|
+
- spec/integration/html/test_sharp.rb
|
230
|
+
- spec/integration/html/test_slash.rb
|
231
|
+
- spec/integration/html/test_star.rb
|
232
|
+
- spec/integration/test_dummy.rb
|
233
|
+
- spec/integration/test_examples.rb
|
234
|
+
- spec/integration/test_mustang.rb
|
235
|
+
- spec/integration/test_readme.rb
|
236
|
+
- spec/integration/test_upcasing.rb
|
228
237
|
- spec/spec_helper.rb
|
229
|
-
- spec/
|
230
|
-
- spec/
|
231
|
-
- spec/
|
232
|
-
- spec/
|
238
|
+
- spec/test_wlang.rb
|
239
|
+
- spec/unit/compiler/autospacing/test_right_strip.rb
|
240
|
+
- spec/unit/compiler/autospacing/test_unindent.rb
|
241
|
+
- spec/unit/compiler/test_dialect_enforcer.rb
|
242
|
+
- spec/unit/compiler/test_grammar.rb
|
243
|
+
- spec/unit/compiler/test_parser.rb
|
244
|
+
- spec/unit/compiler/test_proc_call_removal.rb
|
245
|
+
- spec/unit/compiler/test_static_merger.rb
|
246
|
+
- spec/unit/compiler/test_strconcat_flattener.rb
|
247
|
+
- spec/unit/compiler/test_to_ruby_abstraction.rb
|
248
|
+
- spec/unit/compiler/test_to_ruby_code.rb
|
249
|
+
- spec/unit/dialect/test_compile.rb
|
250
|
+
- spec/unit/dialect/test_dispatching.rb
|
251
|
+
- spec/unit/dialect/test_evaluate.rb
|
252
|
+
- spec/unit/dialect/test_render.rb
|
253
|
+
- spec/unit/dialect/test_tags.rb
|
254
|
+
- spec/unit/dialect/test_with_scope.rb
|
255
|
+
- spec/unit/scope/test_binding_scope.rb
|
256
|
+
- spec/unit/scope/test_coerce.rb
|
257
|
+
- spec/unit/scope/test_object_scope.rb
|
258
|
+
- spec/unit/scope/test_proxy_scope.rb
|
259
|
+
- spec/unit/scope/test_root_scope.rb
|
260
|
+
- spec/unit/test_assumptions.rb
|
261
|
+
- spec/unit/test_scope.rb
|
233
262
|
- tasks/debug_mail.rake
|
234
263
|
- tasks/debug_mail.txt
|
235
264
|
- tasks/gem.rake
|
236
|
-
- tasks/genspec.rake
|
237
265
|
- tasks/spec_test.rake
|
238
266
|
- tasks/unit_test.rake
|
239
267
|
- tasks/yard.rake
|
240
|
-
- test/blackbox/basic/execution_1.exp
|
241
|
-
- test/blackbox/basic/execution_1.tpl
|
242
|
-
- test/blackbox/basic/execution_2.exp
|
243
|
-
- test/blackbox/basic/execution_2.tpl
|
244
|
-
- test/blackbox/basic/execution_3.exp
|
245
|
-
- test/blackbox/basic/execution_3.tpl
|
246
|
-
- test/blackbox/basic/execution_4.exp
|
247
|
-
- test/blackbox/basic/execution_4.tpl
|
248
|
-
- test/blackbox/basic/inclusion_1.exp
|
249
|
-
- test/blackbox/basic/inclusion_1.tpl
|
250
|
-
- test/blackbox/basic/inclusion_2.exp
|
251
|
-
- test/blackbox/basic/inclusion_2.tpl
|
252
|
-
- test/blackbox/basic/injection_1.exp
|
253
|
-
- test/blackbox/basic/injection_1.tpl
|
254
|
-
- test/blackbox/basic/injection_2.exp
|
255
|
-
- test/blackbox/basic/injection_2.tpl
|
256
|
-
- test/blackbox/basic/modulation_1.exp
|
257
|
-
- test/blackbox/basic/modulation_1.tpl
|
258
|
-
- test/blackbox/basic/modulation_2.exp
|
259
|
-
- test/blackbox/basic/modulation_2.tpl
|
260
|
-
- test/blackbox/basic/recursive_app_1.exp
|
261
|
-
- test/blackbox/basic/recursive_app_1.tpl
|
262
|
-
- test/blackbox/basic/recursive_app_2.exp
|
263
|
-
- test/blackbox/basic/recursive_app_2.tpl
|
264
|
-
- test/blackbox/buffering/data_1.rb
|
265
|
-
- test/blackbox/buffering/data_assignment_1.exp
|
266
|
-
- test/blackbox/buffering/data_assignment_1.tpl
|
267
|
-
- test/blackbox/buffering/data_assignment_2.exp
|
268
|
-
- test/blackbox/buffering/data_assignment_2.tpl
|
269
|
-
- test/blackbox/buffering/data_assignment_3.exp
|
270
|
-
- test/blackbox/buffering/data_assignment_3.tpl
|
271
|
-
- test/blackbox/buffering/data_assignment_4.exp
|
272
|
-
- test/blackbox/buffering/data_assignment_4.tpl
|
273
|
-
- test/blackbox/buffering/input_1.exp
|
274
|
-
- test/blackbox/buffering/input_1.tpl
|
275
|
-
- test/blackbox/buffering/input_2.exp
|
276
|
-
- test/blackbox/buffering/input_2.tpl
|
277
|
-
- test/blackbox/buffering/input_3.exp
|
278
|
-
- test/blackbox/buffering/input_3.tpl
|
279
|
-
- test/blackbox/buffering/input_inclusion.exp
|
280
|
-
- test/blackbox/buffering/input_inclusion.tpl
|
281
|
-
- test/blackbox/buffering/input_inclusion_1.exp
|
282
|
-
- test/blackbox/buffering/input_inclusion_1.tpl
|
283
|
-
- test/blackbox/buffering/input_inclusion_2.exp
|
284
|
-
- test/blackbox/buffering/input_inclusion_2.tpl
|
285
|
-
- test/blackbox/buffering/input_inclusion_3.exp
|
286
|
-
- test/blackbox/buffering/input_inclusion_3.tpl
|
287
|
-
- test/blackbox/buffering/input_inclusion_4.exp
|
288
|
-
- test/blackbox/buffering/input_inclusion_4.tpl
|
289
|
-
- test/blackbox/buffering/input_inclusion_5.exp
|
290
|
-
- test/blackbox/buffering/input_inclusion_5.tpl
|
291
|
-
- test/blackbox/buffering/input_inclusion_6.exp
|
292
|
-
- test/blackbox/buffering/input_inclusion_6.tpl
|
293
|
-
- test/blackbox/buffering/input_inclusion_7.exp
|
294
|
-
- test/blackbox/buffering/input_inclusion_7.tpl
|
295
|
-
- test/blackbox/buffering/text_1.txt
|
296
|
-
- test/blackbox/buffering/wlang.txt
|
297
|
-
- test/blackbox/context/assignment_1.exp
|
298
|
-
- test/blackbox/context/assignment_1.tpl
|
299
|
-
- test/blackbox/context/assignment_2.exp
|
300
|
-
- test/blackbox/context/assignment_2.tpl
|
301
|
-
- test/blackbox/context/assignment_3.exp
|
302
|
-
- test/blackbox/context/assignment_3.tpl
|
303
|
-
- test/blackbox/context/assignment_4.exp
|
304
|
-
- test/blackbox/context/assignment_4.tpl
|
305
|
-
- test/blackbox/context/block_assignment_1.exp
|
306
|
-
- test/blackbox/context/block_assignment_1.tpl
|
307
|
-
- test/blackbox/context/block_assignment_2.exp
|
308
|
-
- test/blackbox/context/block_assignment_2.tpl
|
309
|
-
- test/blackbox/context/modulo_assignment_1.exp
|
310
|
-
- test/blackbox/context/modulo_assignment_1.tpl
|
311
|
-
- test/blackbox/context/modulo_assignment_2.exp
|
312
|
-
- test/blackbox/context/modulo_assignment_2.tpl
|
313
|
-
- test/blackbox/data_1.rb
|
314
|
-
- test/blackbox/postblock/hello.exp
|
315
|
-
- test/blackbox/postblock/hello.pre
|
316
|
-
- test/blackbox/postblock/hello.tpl
|
317
|
-
- test/blackbox/postblock/hello_input_inclusion.exp
|
318
|
-
- test/blackbox/postblock/hello_input_inclusion.tpl
|
319
|
-
- test/blackbox/postblock/hello_to_authors.exp
|
320
|
-
- test/blackbox/postblock/hello_to_authors.tpl
|
321
|
-
- test/blackbox/poststring/hello.exp
|
322
|
-
- test/blackbox/poststring/hello.tpl
|
323
|
-
- test/blackbox/test_all.rb
|
324
|
-
- test/standard_dialects/ruby/data.rb
|
325
|
-
- test/standard_dialects/ruby/inclusion.exp
|
326
|
-
- test/standard_dialects/ruby/inclusion.tpl
|
327
|
-
- test/standard_dialects/test_all.rb
|
328
|
-
- test/standard_dialects/yaml/assumptions_test.rb
|
329
|
-
- test/standard_dialects/yaml/data.rb
|
330
|
-
- test/standard_dialects/yaml/inclusion_1.exp
|
331
|
-
- test/standard_dialects/yaml/inclusion_1.tpl
|
332
|
-
- test/standard_dialects/yaml/inclusion_2.exp
|
333
|
-
- test/standard_dialects/yaml/inclusion_2.tpl
|
334
|
-
- test/unit/test_all.rb
|
335
|
-
- test/unit/wlang/anagram_bugs_test.rb
|
336
|
-
- test/unit/wlang/basic_ruleset_test.rb
|
337
|
-
- test/unit/wlang/buffering_ruleset_test.rb
|
338
|
-
- test/unit/wlang/buffering_template1.wtpl
|
339
|
-
- test/unit/wlang/buffering_template2.wtpl
|
340
|
-
- test/unit/wlang/buffering_template3.wtpl
|
341
|
-
- test/unit/wlang/buffering_template4.wtpl
|
342
|
-
- test/unit/wlang/buffering_template5.wtpl
|
343
|
-
- test/unit/wlang/context_ruleset_test.rb
|
344
|
-
- test/unit/wlang/data.rb
|
345
|
-
- test/unit/wlang/encoder_set_test.rb
|
346
|
-
- test/unit/wlang/imperative_ruleset_test.rb
|
347
|
-
- test/unit/wlang/intelligent_buffer_test.rb
|
348
|
-
- test/unit/wlang/othersymbols_test.rb
|
349
|
-
- test/unit/wlang/parser_test.rb
|
350
|
-
- test/unit/wlang/plain_text_dialect_test.rb
|
351
|
-
- test/unit/wlang/ruby_dialect_test.rb
|
352
|
-
- test/unit/wlang/ruby_expected.rb
|
353
|
-
- test/unit/wlang/ruby_template.wrb
|
354
|
-
- test/unit/wlang/ruleset_utils_test.rb
|
355
|
-
- test/unit/wlang/specification_examples_test.rb
|
356
|
-
- test/unit/wlang/test_utils.rb
|
357
|
-
- test/unit/wlang/wlang_test.rb
|
358
|
-
- wlang.gemspec
|
359
|
-
- wlang.noespec
|
360
|
-
has_rdoc: true
|
361
268
|
homepage: http://github.com/blambeau/wlang
|
362
269
|
licenses: []
|
363
|
-
|
364
270
|
post_install_message:
|
365
271
|
rdoc_options: []
|
366
|
-
|
367
|
-
require_paths:
|
272
|
+
require_paths:
|
368
273
|
- lib
|
369
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
274
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
370
275
|
none: false
|
371
|
-
requirements:
|
372
|
-
- -
|
373
|
-
- !ruby/object:Gem::Version
|
374
|
-
|
375
|
-
|
376
|
-
- 0
|
377
|
-
version: "0"
|
378
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
276
|
+
requirements:
|
277
|
+
- - ! '>='
|
278
|
+
- !ruby/object:Gem::Version
|
279
|
+
version: '0'
|
280
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
379
281
|
none: false
|
380
|
-
requirements:
|
381
|
-
- -
|
382
|
-
- !ruby/object:Gem::Version
|
383
|
-
|
384
|
-
segments:
|
385
|
-
- 0
|
386
|
-
version: "0"
|
282
|
+
requirements:
|
283
|
+
- - ! '>'
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: 1.3.1
|
387
286
|
requirements: []
|
388
|
-
|
389
287
|
rubyforge_project:
|
390
|
-
rubygems_version: 1.
|
288
|
+
rubygems_version: 1.8.10
|
391
289
|
signing_key:
|
392
290
|
specification_version: 3
|
393
291
|
summary: WLang is a powerful code generation and templating engine
|
394
|
-
test_files:
|
395
|
-
-
|
396
|
-
-
|
397
|
-
-
|
398
|
-
-
|
399
|
-
-
|
400
|
-
-
|
401
|
-
-
|
402
|
-
-
|
403
|
-
-
|
404
|
-
-
|
405
|
-
-
|
406
|
-
-
|
407
|
-
-
|
408
|
-
-
|
409
|
-
-
|
410
|
-
-
|
411
|
-
-
|
412
|
-
-
|
413
|
-
-
|
414
|
-
-
|
415
|
-
-
|
416
|
-
-
|
417
|
-
-
|
418
|
-
- test/blackbox/basic/recursive_app_2.tpl
|
419
|
-
- test/blackbox/buffering/data_1.rb
|
420
|
-
- test/blackbox/buffering/data_assignment_1.exp
|
421
|
-
- test/blackbox/buffering/data_assignment_1.tpl
|
422
|
-
- test/blackbox/buffering/data_assignment_2.exp
|
423
|
-
- test/blackbox/buffering/data_assignment_2.tpl
|
424
|
-
- test/blackbox/buffering/data_assignment_3.exp
|
425
|
-
- test/blackbox/buffering/data_assignment_3.tpl
|
426
|
-
- test/blackbox/buffering/data_assignment_4.exp
|
427
|
-
- test/blackbox/buffering/data_assignment_4.tpl
|
428
|
-
- test/blackbox/buffering/input_1.exp
|
429
|
-
- test/blackbox/buffering/input_1.tpl
|
430
|
-
- test/blackbox/buffering/input_2.exp
|
431
|
-
- test/blackbox/buffering/input_2.tpl
|
432
|
-
- test/blackbox/buffering/input_3.exp
|
433
|
-
- test/blackbox/buffering/input_3.tpl
|
434
|
-
- test/blackbox/buffering/input_inclusion.exp
|
435
|
-
- test/blackbox/buffering/input_inclusion.tpl
|
436
|
-
- test/blackbox/buffering/input_inclusion_1.exp
|
437
|
-
- test/blackbox/buffering/input_inclusion_1.tpl
|
438
|
-
- test/blackbox/buffering/input_inclusion_2.exp
|
439
|
-
- test/blackbox/buffering/input_inclusion_2.tpl
|
440
|
-
- test/blackbox/buffering/input_inclusion_3.exp
|
441
|
-
- test/blackbox/buffering/input_inclusion_3.tpl
|
442
|
-
- test/blackbox/buffering/input_inclusion_4.exp
|
443
|
-
- test/blackbox/buffering/input_inclusion_4.tpl
|
444
|
-
- test/blackbox/buffering/input_inclusion_5.exp
|
445
|
-
- test/blackbox/buffering/input_inclusion_5.tpl
|
446
|
-
- test/blackbox/buffering/input_inclusion_6.exp
|
447
|
-
- test/blackbox/buffering/input_inclusion_6.tpl
|
448
|
-
- test/blackbox/buffering/input_inclusion_7.exp
|
449
|
-
- test/blackbox/buffering/input_inclusion_7.tpl
|
450
|
-
- test/blackbox/buffering/text_1.txt
|
451
|
-
- test/blackbox/buffering/wlang.txt
|
452
|
-
- test/blackbox/context/assignment_1.exp
|
453
|
-
- test/blackbox/context/assignment_1.tpl
|
454
|
-
- test/blackbox/context/assignment_2.exp
|
455
|
-
- test/blackbox/context/assignment_2.tpl
|
456
|
-
- test/blackbox/context/assignment_3.exp
|
457
|
-
- test/blackbox/context/assignment_3.tpl
|
458
|
-
- test/blackbox/context/assignment_4.exp
|
459
|
-
- test/blackbox/context/assignment_4.tpl
|
460
|
-
- test/blackbox/context/block_assignment_1.exp
|
461
|
-
- test/blackbox/context/block_assignment_1.tpl
|
462
|
-
- test/blackbox/context/block_assignment_2.exp
|
463
|
-
- test/blackbox/context/block_assignment_2.tpl
|
464
|
-
- test/blackbox/context/modulo_assignment_1.exp
|
465
|
-
- test/blackbox/context/modulo_assignment_1.tpl
|
466
|
-
- test/blackbox/context/modulo_assignment_2.exp
|
467
|
-
- test/blackbox/context/modulo_assignment_2.tpl
|
468
|
-
- test/blackbox/data_1.rb
|
469
|
-
- test/blackbox/postblock/hello.exp
|
470
|
-
- test/blackbox/postblock/hello.pre
|
471
|
-
- test/blackbox/postblock/hello.tpl
|
472
|
-
- test/blackbox/postblock/hello_input_inclusion.exp
|
473
|
-
- test/blackbox/postblock/hello_input_inclusion.tpl
|
474
|
-
- test/blackbox/postblock/hello_to_authors.exp
|
475
|
-
- test/blackbox/postblock/hello_to_authors.tpl
|
476
|
-
- test/blackbox/poststring/hello.exp
|
477
|
-
- test/blackbox/poststring/hello.tpl
|
478
|
-
- test/blackbox/test_all.rb
|
479
|
-
- test/standard_dialects/ruby/data.rb
|
480
|
-
- test/standard_dialects/ruby/inclusion.exp
|
481
|
-
- test/standard_dialects/ruby/inclusion.tpl
|
482
|
-
- test/standard_dialects/test_all.rb
|
483
|
-
- test/standard_dialects/yaml/assumptions_test.rb
|
484
|
-
- test/standard_dialects/yaml/data.rb
|
485
|
-
- test/standard_dialects/yaml/inclusion_1.exp
|
486
|
-
- test/standard_dialects/yaml/inclusion_1.tpl
|
487
|
-
- test/standard_dialects/yaml/inclusion_2.exp
|
488
|
-
- test/standard_dialects/yaml/inclusion_2.tpl
|
489
|
-
- test/unit/test_all.rb
|
490
|
-
- test/unit/wlang/anagram_bugs_test.rb
|
491
|
-
- test/unit/wlang/basic_ruleset_test.rb
|
492
|
-
- test/unit/wlang/buffering_ruleset_test.rb
|
493
|
-
- test/unit/wlang/buffering_template1.wtpl
|
494
|
-
- test/unit/wlang/buffering_template2.wtpl
|
495
|
-
- test/unit/wlang/buffering_template3.wtpl
|
496
|
-
- test/unit/wlang/buffering_template4.wtpl
|
497
|
-
- test/unit/wlang/buffering_template5.wtpl
|
498
|
-
- test/unit/wlang/context_ruleset_test.rb
|
499
|
-
- test/unit/wlang/data.rb
|
500
|
-
- test/unit/wlang/encoder_set_test.rb
|
501
|
-
- test/unit/wlang/imperative_ruleset_test.rb
|
502
|
-
- test/unit/wlang/intelligent_buffer_test.rb
|
503
|
-
- test/unit/wlang/othersymbols_test.rb
|
504
|
-
- test/unit/wlang/parser_test.rb
|
505
|
-
- test/unit/wlang/plain_text_dialect_test.rb
|
506
|
-
- test/unit/wlang/ruby_dialect_test.rb
|
507
|
-
- test/unit/wlang/ruby_expected.rb
|
508
|
-
- test/unit/wlang/ruby_template.wrb
|
509
|
-
- test/unit/wlang/ruleset_utils_test.rb
|
510
|
-
- test/unit/wlang/specification_examples_test.rb
|
511
|
-
- test/unit/wlang/test_utils.rb
|
512
|
-
- test/unit/wlang/wlang_test.rb
|
513
|
-
- spec/basic_object.spec
|
514
|
-
- spec/coderay_dialect.spec
|
515
|
-
- spec/dialect/apply_post_transform.spec
|
516
|
-
- spec/global_extensions.rb
|
517
|
-
- spec/hash_scope.spec
|
518
|
-
- spec/redcloth_dialect.spec
|
292
|
+
test_files:
|
293
|
+
- spec/fixtures/dialect/foobar.rb
|
294
|
+
- spec/fixtures/dialect/upcasing.rb
|
295
|
+
- spec/fixtures/templates/hello.tpl
|
296
|
+
- spec/integration/examples/1-basics.txt
|
297
|
+
- spec/integration/examples/2-imperative.txt
|
298
|
+
- spec/integration/examples/3-partials.txt
|
299
|
+
- spec/integration/examples/4-recursion.txt
|
300
|
+
- spec/integration/html/test_ampersand.rb
|
301
|
+
- spec/integration/html/test_bang.rb
|
302
|
+
- spec/integration/html/test_caret.rb
|
303
|
+
- spec/integration/html/test_dollar.rb
|
304
|
+
- spec/integration/html/test_greater.rb
|
305
|
+
- spec/integration/html/test_modulo.rb
|
306
|
+
- spec/integration/html/test_plus.rb
|
307
|
+
- spec/integration/html/test_question.rb
|
308
|
+
- spec/integration/html/test_sharp.rb
|
309
|
+
- spec/integration/html/test_slash.rb
|
310
|
+
- spec/integration/html/test_star.rb
|
311
|
+
- spec/integration/test_dummy.rb
|
312
|
+
- spec/integration/test_examples.rb
|
313
|
+
- spec/integration/test_mustang.rb
|
314
|
+
- spec/integration/test_readme.rb
|
315
|
+
- spec/integration/test_upcasing.rb
|
519
316
|
- spec/spec_helper.rb
|
520
|
-
- spec/
|
521
|
-
- spec/
|
522
|
-
- spec/
|
523
|
-
- spec/
|
317
|
+
- spec/test_wlang.rb
|
318
|
+
- spec/unit/compiler/autospacing/test_right_strip.rb
|
319
|
+
- spec/unit/compiler/autospacing/test_unindent.rb
|
320
|
+
- spec/unit/compiler/test_dialect_enforcer.rb
|
321
|
+
- spec/unit/compiler/test_grammar.rb
|
322
|
+
- spec/unit/compiler/test_parser.rb
|
323
|
+
- spec/unit/compiler/test_proc_call_removal.rb
|
324
|
+
- spec/unit/compiler/test_static_merger.rb
|
325
|
+
- spec/unit/compiler/test_strconcat_flattener.rb
|
326
|
+
- spec/unit/compiler/test_to_ruby_abstraction.rb
|
327
|
+
- spec/unit/compiler/test_to_ruby_code.rb
|
328
|
+
- spec/unit/dialect/test_compile.rb
|
329
|
+
- spec/unit/dialect/test_dispatching.rb
|
330
|
+
- spec/unit/dialect/test_evaluate.rb
|
331
|
+
- spec/unit/dialect/test_render.rb
|
332
|
+
- spec/unit/dialect/test_tags.rb
|
333
|
+
- spec/unit/dialect/test_with_scope.rb
|
334
|
+
- spec/unit/scope/test_binding_scope.rb
|
335
|
+
- spec/unit/scope/test_coerce.rb
|
336
|
+
- spec/unit/scope/test_object_scope.rb
|
337
|
+
- spec/unit/scope/test_proxy_scope.rb
|
338
|
+
- spec/unit/scope/test_root_scope.rb
|
339
|
+
- spec/unit/test_assumptions.rb
|
340
|
+
- spec/unit/test_scope.rb
|