guard-mthaml 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +34 -0
- data/lib/guard/mthaml.rb +140 -0
- data/lib/guard/mthaml/compiler/MtHaml.php +255 -0
- data/lib/guard/mthaml/templates/Guardfile +12 -0
- data/lib/guard/mthaml/version.rb +5 -0
- data/vendor/autoload.php +7 -0
- data/vendor/coffeescript/coffeescript/LICENSE +22 -0
- data/vendor/coffeescript/coffeescript/README.md +96 -0
- data/vendor/coffeescript/coffeescript/composer.json +23 -0
- data/vendor/coffeescript/coffeescript/grammar.y +309 -0
- data/vendor/coffeescript/coffeescript/make.php +115 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Compiler.php +76 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Error.php +15 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Helpers.php +116 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Init.php +96 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Lexer.php +1356 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Nodes.php +105 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Parser.php +3326 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Rewriter.php +552 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Scope.php +196 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/SyntaxError.php +9 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/Value.php +20 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Access.php +31 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Arr.php +69 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Assign.php +353 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Base.php +288 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Block.php +294 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Call.php +283 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Class.php +282 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Closure.php +49 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Code.php +203 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Comment.php +39 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Existence.php +42 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Extends.php +26 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/For.php +250 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/If.php +161 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/In.php +99 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Index.php +27 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Literal.php +96 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Obj.php +126 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Op.php +292 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Param.php +119 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Parens.php +45 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Range.php +225 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Return.php +56 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Slice.php +47 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Splat.php +100 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Switch.php +121 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Throw.php +37 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Try.php +79 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Value.php +210 -0
- data/vendor/coffeescript/coffeescript/src/CoffeeScript/yy/While.php +112 -0
- data/vendor/coffeescript/coffeescript/tests/cases/arrays.coffee +77 -0
- data/vendor/coffeescript/coffeescript/tests/cases/assignment.coffee +352 -0
- data/vendor/coffeescript/coffeescript/tests/cases/booleans.coffee +21 -0
- data/vendor/coffeescript/coffeescript/tests/cases/classes.coffee +681 -0
- data/vendor/coffeescript/coffeescript/tests/cases/comments.coffee +207 -0
- data/vendor/coffeescript/coffeescript/tests/cases/compilation.coffee +72 -0
- data/vendor/coffeescript/coffeescript/tests/cases/comprehensions.coffee +501 -0
- data/vendor/coffeescript/coffeescript/tests/cases/control_flow.coffee +430 -0
- data/vendor/coffeescript/coffeescript/tests/cases/eval.coffee +29 -0
- data/vendor/coffeescript/coffeescript/tests/cases/exception_handling.coffee +102 -0
- data/vendor/coffeescript/coffeescript/tests/cases/formatting.coffee +146 -0
- data/vendor/coffeescript/coffeescript/tests/cases/function_invocation.coffee +552 -0
- data/vendor/coffeescript/coffeescript/tests/cases/functions.coffee +188 -0
- data/vendor/coffeescript/coffeescript/tests/cases/helpers.coffee +96 -0
- data/vendor/coffeescript/coffeescript/tests/cases/importing.coffee +18 -0
- data/vendor/coffeescript/coffeescript/tests/cases/interpolation.coffee +138 -0
- data/vendor/coffeescript/coffeescript/tests/cases/javascript_literals.coffee +10 -0
- data/vendor/coffeescript/coffeescript/tests/cases/numbers.coffee +76 -0
- data/vendor/coffeescript/coffeescript/tests/cases/objects.coffee +271 -0
- data/vendor/coffeescript/coffeescript/tests/cases/operators.coffee +277 -0
- data/vendor/coffeescript/coffeescript/tests/cases/option_parser.coffee +43 -0
- data/vendor/coffeescript/coffeescript/tests/cases/ranges.coffee +88 -0
- data/vendor/coffeescript/coffeescript/tests/cases/regexps.coffee +63 -0
- data/vendor/coffeescript/coffeescript/tests/cases/scope.coffee +43 -0
- data/vendor/coffeescript/coffeescript/tests/cases/slicing_and_splicing.coffee +143 -0
- data/vendor/coffeescript/coffeescript/tests/cases/soaks.coffee +134 -0
- data/vendor/coffeescript/coffeescript/tests/cases/strict.coffee +155 -0
- data/vendor/coffeescript/coffeescript/tests/cases/strings.coffee +107 -0
- data/vendor/coffeescript/coffeescript/tests/css/style.css +43 -0
- data/vendor/coffeescript/coffeescript/tests/index.php +119 -0
- data/vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.1.1.js +8 -0
- data/vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.2.0.js +8 -0
- data/vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.3.0.js +8 -0
- data/vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.3.1.js +8 -0
- data/vendor/coffeescript/coffeescript/tests/js/lib/diff.js +276 -0
- data/vendor/coffeescript/coffeescript/tests/js/main.js +123 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/LICENSE.txt +10 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/Lempar.php +948 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Action.php +257 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/ActionTable.php +299 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Config.php +574 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Data.php +1857 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Parser.php +851 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/PropagationLink.php +126 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Rule.php +144 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/State.php +283 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Symbol.php +288 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/cli.php +5 -0
- data/vendor/coffeescript/coffeescript/vendor/ParserGenerator/ParserGenerator.php +811 -0
- data/vendor/composer/ClassLoader.php +383 -0
- data/vendor/composer/autoload_classmap.php +9 -0
- data/vendor/composer/autoload_namespaces.php +12 -0
- data/vendor/composer/autoload_psr4.php +10 -0
- data/vendor/composer/autoload_real.php +50 -0
- data/vendor/composer/installed.json +166 -0
- data/vendor/michelf/php-markdown/License.md +36 -0
- data/vendor/michelf/php-markdown/Michelf/Markdown.inc.php +10 -0
- data/vendor/michelf/php-markdown/Michelf/Markdown.php +3117 -0
- data/vendor/michelf/php-markdown/Michelf/MarkdownExtra.inc.php +11 -0
- data/vendor/michelf/php-markdown/Michelf/MarkdownExtra.php +38 -0
- data/vendor/michelf/php-markdown/Michelf/MarkdownInterface.inc.php +9 -0
- data/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php +37 -0
- data/vendor/michelf/php-markdown/Readme.md +305 -0
- data/vendor/michelf/php-markdown/Readme.php +31 -0
- data/vendor/michelf/php-markdown/composer.json +31 -0
- data/vendor/mthaml/mthaml/CHANGELOG +48 -0
- data/vendor/mthaml/mthaml/LICENSE +44 -0
- data/vendor/mthaml/mthaml/README.markdown +262 -0
- data/vendor/mthaml/mthaml/composer.json +45 -0
- data/vendor/mthaml/mthaml/docs/Makefile +153 -0
- data/vendor/mthaml/mthaml/docs/_static/mthaml.css +30 -0
- data/vendor/mthaml/mthaml/docs/_theme/mthaml/theme.conf +4 -0
- data/vendor/mthaml/mthaml/docs/conf.py +242 -0
- data/vendor/mthaml/mthaml/docs/index.rst +18 -0
- data/vendor/mthaml/mthaml/docs/twig-syntax.rst +274 -0
- data/vendor/mthaml/mthaml/examples/README.md +5 -0
- data/vendor/mthaml/mthaml/examples/autoload.php +8 -0
- data/vendor/mthaml/mthaml/examples/example-php.haml +5 -0
- data/vendor/mthaml/mthaml/examples/example-php.php +37 -0
- data/vendor/mthaml/mthaml/examples/example-twig-noext.twig +11 -0
- data/vendor/mthaml/mthaml/examples/example-twig.haml +9 -0
- data/vendor/mthaml/mthaml/examples/example-twig.php +60 -0
- data/vendor/mthaml/mthaml/examples/example.twig.haml +8 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Autoloader.php +22 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Environment.php +178 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Escaping.php +33 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Exception.php +9 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Exception/SyntaxErrorException.php +9 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/AbstractFilter.php +43 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Cdata.php +16 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/CoffeeScript.php +33 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Css.php +26 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Escaped.php +22 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/FilterInterface.php +15 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Javascript.php +26 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Less.php +27 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Less/LeafoLess.php +20 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Less/OyejorgeLess.php +23 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown.php +58 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/CebeMarkdown.php +22 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/Ciconia.php +21 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/MichelfMarkdown.php +21 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/Parsedown.php +21 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Php.php +37 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Plain.php +24 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Preserve.php +19 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Scss.php +37 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Filter/Twig.php +47 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Indentation/Indentation.php +96 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Indentation/IndentationException.php +9 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Indentation/IndentationInterface.php +50 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Indentation/Undefined.php +41 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Comment.php +71 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Doctype.php +96 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php +19 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Filter.php +51 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Insert.php +42 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/InterpolatedString.php +73 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/NestAbstract.php +117 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/NestInterface.php +10 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/NodeAbstract.php +77 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/ObjectRefClass.php +42 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/ObjectRefId.php +42 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Root.php +35 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Run.php +71 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Statement.php +45 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Tag.php +90 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/TagAttribute.php +62 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/TagAttributeInterpolation.php +24 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/TagAttributeList.php +24 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Node/Text.php +37 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Autoclose.php +25 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Escaping.php +105 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/MergeAttrs.php +110 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Midblock.php +37 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/NodeVisitorAbstract.php +226 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/NodeVisitorInterface.php +97 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/PhpRenderer.php +288 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Printer.php +265 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/RendererAbstract.php +581 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/TwigRenderer.php +252 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Parser.php +862 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Parser/Buffer.php +147 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Runtime.php +218 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Runtime/AttributeInterpolation.php +16 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Runtime/AttributeList.php +16 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Support/Php/Executor.php +157 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Support/Twig/Extension.php +47 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Support/Twig/Lexer.php +48 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Support/Twig/Loader.php +81 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Target/Php.php +23 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Target/TargetAbstract.php +87 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Target/TargetInterface.php +12 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/Target/Twig.php +23 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/TreeBuilder.php +100 -0
- data/vendor/mthaml/mthaml/lib/MtHaml/TreeBuilderException.php +9 -0
- data/vendor/mthaml/mthaml/phpunit.xml +25 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/EnvironmentTest.php +59 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/HamlSpecTest.php +83 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/IndentationTest.php +140 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/Node/DoctypeTest.php +51 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/Node/NodeTest.php +110 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/NodeVisitor/PhpRendererTest.php +113 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/NodeVisitor/TwigRendererTest.php +68 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/NodeVisitorsTest.php +44 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/Parser/BufferTest.php +77 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/ParserTest.php +47 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/RuntimeTest.php +356 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/Support/Php/ExecutorTest.php +83 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/Support/Twig/LoaderTest.php +65 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/TestCase.php +49 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/TestCaseTest.php +50 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/Support/Php/Executor.001.haml +1 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/attr_list_php.test +20 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/attr_list_twig.test +12 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/boolean_attr_php.test +16 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/boolean_attr_twig.test +16 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug28_php.test +15 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug28_twig.test +15 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug42.test +13 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug8_twig.test +10 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/coffeescript_filter.test +31 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/comments.test +26 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/cond_cmt.test +25 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype.test +18 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_html4.test +20 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_invalid.test +12 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_invalid_xhtml.test +12 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_php.test +18 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_xhtml.test +30 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/filters.test +51 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/insert_non_echo_php.test +11 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/insert_non_echo_twig.test +11 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/interpolation_in_html_attrs_php.test +31 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/interpolation_in_html_attrs_twig.test +31 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/less_filter_leafo.test +33 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/less_filter_oyejorge.test +49 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_cebemarkdown.test +35 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_ciconia.test +36 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_michelf.test +34 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_parsedown.test +31 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_optimization_filter_michelf.test +23 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/mergeattrs.test +18 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/nuke_inner_whitespace.test +77 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/nuke_outer_whitespace.test +122 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/object_ref_php.test +14 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/object_ref_twig.test +14 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php.test +109 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_autoescaping.test +22 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_autoescaping_once.test +25 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_blocks.test +29 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_filters.test +42 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/scss_filter.test +32 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/strip_inline_comments_php.test +22 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/test.test +24 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/trailing_semicolon_php.test +14 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/try_catch_php.test +17 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig.test +112 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig_blocks.test +29 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig_filters.test +37 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig_whitespace.test +32 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/whitespace.test +63 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/autoclose.test +30 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/escaping.test +52 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/escaping_attr_once.test +52 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/escaping_html_false.test +52 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/mergeattrs.test +26 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/midblock.test +54 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/midblock_002.test +32 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attr_list.test +14 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs.test +42 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs_002.test +35 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs_003.test +30 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs_html_linebreak.test +17 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/blocks.test +27 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/blocks_002.test +15 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/boolean_attr.test +19 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/bug28.test +15 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/bug8.test +11 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/cond_cmt.test +23 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/doctype.test +11 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/double_equal.test +7 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/empty_line_after_multiline.test +10 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_001.test +8 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_002.test +8 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_003.test +8 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_004.test +6 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_005.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_006.test +7 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_007.test +7 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_008.test +7 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_009.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_010.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_013.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_016.test +7 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_017.test +8 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_018.test +6 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_019.test +6 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_020.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters.test +20 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_002.test +19 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_003.test +13 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_004.test +21 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_005.test +22 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_006.test +23 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/insertflags.test +17 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/interpolation.test +36 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/interpolation_in_html_attrs.test +17 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/multiline.test +18 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/multiline_code.test +59 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/multiple_attr_kinds.test +47 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/non_rendered_comment.test +31 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ns.test +11 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/object_ref.test +22 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/object_ref_error1.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/object_ref_error2.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/quotes_in_haml.test +10 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby19_attrs.test +11 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma.test +23 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma_errors_001.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma_errors_002.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma_errors_003.test +5 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/standard.test +114 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/tagflags.test +39 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/runtime/php_filters.test +28 -0
- data/vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/runtime/twig_filters.test +31 -0
- data/vendor/mthaml/mthaml/test/bootstrap.php +3 -0
- metadata +398 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
--HAML--
|
2
|
+
%p<
|
3
|
+
#id<
|
4
|
+
.class<
|
5
|
+
%p{:foo=>"bar"}<
|
6
|
+
%p <
|
7
|
+
#id <
|
8
|
+
.class <
|
9
|
+
%p{:foo=>"bar"} <
|
10
|
+
%p>
|
11
|
+
%p/
|
12
|
+
%p<>/
|
13
|
+
--EXPECT--
|
14
|
+
root(
|
15
|
+
tag(p<)
|
16
|
+
tag(div<
|
17
|
+
attr(text(id)text(id))
|
18
|
+
)
|
19
|
+
tag(div<
|
20
|
+
attr(text(class)text(class))
|
21
|
+
)
|
22
|
+
tag(p<
|
23
|
+
attr(text(foo)interpolated(text(bar)))
|
24
|
+
)
|
25
|
+
tag(p interpolated(text(<)))
|
26
|
+
tag(div interpolated(text(<))
|
27
|
+
attr(text(id)text(id))
|
28
|
+
)
|
29
|
+
tag(div interpolated(text(<))
|
30
|
+
attr(text(class)text(class))
|
31
|
+
)
|
32
|
+
tag(p interpolated(text(<))
|
33
|
+
attr(text(foo)interpolated(text(bar)))
|
34
|
+
)
|
35
|
+
tag(p>)
|
36
|
+
tag(p/)
|
37
|
+
tag(p<>/)
|
38
|
+
)
|
39
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
--FILE--
|
2
|
+
<?php
|
3
|
+
$mthaml = new MtHaml\Environment('php', array('mthaml_variable' => '$mthaml'));
|
4
|
+
$mthaml->addFilter('twig', new MtHaml\Filter\Twig(new Twig_Environment(new Twig_Loader_String())));
|
5
|
+
|
6
|
+
$source = $mthaml->compileString($parts['HAML'], "$file.haml");
|
7
|
+
$foo = '-foo-';
|
8
|
+
eval('?>'.$source);
|
9
|
+
|
10
|
+
--HAML--
|
11
|
+
%body
|
12
|
+
:twig
|
13
|
+
<p>Ahoj</p>
|
14
|
+
:twig
|
15
|
+
<p>#{$foo}</p>
|
16
|
+
:php
|
17
|
+
echo "<strong>a</strong>\n";
|
18
|
+
:php
|
19
|
+
$x = 5;
|
20
|
+
echo "<strong>{$x}#{$foo}</strong>\n";
|
21
|
+
--EXPECT--
|
22
|
+
<body>
|
23
|
+
<p>Ahoj</p>
|
24
|
+
<p>-foo-</p>
|
25
|
+
<strong>a</strong>
|
26
|
+
<strong>5-foo-</strong>
|
27
|
+
</body>
|
28
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
--FILE--
|
2
|
+
<?php
|
3
|
+
$mthaml = new MtHaml\Environment('twig', array('enable_escaper' => false));
|
4
|
+
|
5
|
+
$twig = new Twig_Environment(new MtHaml\Support\Twig\Loader($mthaml, new Twig_Loader_String()));
|
6
|
+
$twig->addExtension(new MtHaml\Support\Twig\Extension($mthaml));
|
7
|
+
|
8
|
+
$mthaml->addFilter('twig', new MtHaml\Filter\Twig($twig));
|
9
|
+
|
10
|
+
$source = $mthaml->compileString($parts['HAML'], "$file.haml");
|
11
|
+
twig_template_from_string($twig, $source)->display(array('foo' => '-foo-'));
|
12
|
+
|
13
|
+
--HAML--
|
14
|
+
%body
|
15
|
+
:twig
|
16
|
+
<p>Ahoj</p>
|
17
|
+
:twig
|
18
|
+
<p>#{foo}</p>
|
19
|
+
:php
|
20
|
+
echo "<strong>a</strong>\n";
|
21
|
+
:php
|
22
|
+
$x = 5;
|
23
|
+
echo "<strong>{$x}#{foo}</strong>\n";
|
24
|
+
--EXPECT--
|
25
|
+
<body>
|
26
|
+
<p>Ahoj</p>
|
27
|
+
<p>-foo-</p>
|
28
|
+
<strong>a</strong>
|
29
|
+
<strong>5-foo-</strong>
|
30
|
+
</body>
|
31
|
+
|
metadata
ADDED
@@ -0,0 +1,398 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: guard-mthaml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ezekiel Gabrielse
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-11-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: guard
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.1.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.1.0
|
27
|
+
description: Guard::MtHaml automatically compiles your MtHaml template files to PHP,
|
28
|
+
Twig or static HTML.
|
29
|
+
email:
|
30
|
+
- ezekg@yahoo.com
|
31
|
+
executables: []
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- lib/guard/mthaml/compiler/MtHaml.php
|
36
|
+
- lib/guard/mthaml/templates/Guardfile
|
37
|
+
- lib/guard/mthaml/version.rb
|
38
|
+
- lib/guard/mthaml.rb
|
39
|
+
- vendor/autoload.php
|
40
|
+
- vendor/coffeescript/coffeescript/composer.json
|
41
|
+
- vendor/coffeescript/coffeescript/grammar.y
|
42
|
+
- vendor/coffeescript/coffeescript/LICENSE
|
43
|
+
- vendor/coffeescript/coffeescript/make.php
|
44
|
+
- vendor/coffeescript/coffeescript/README.md
|
45
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Compiler.php
|
46
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Error.php
|
47
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Helpers.php
|
48
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Init.php
|
49
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Lexer.php
|
50
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Nodes.php
|
51
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Parser.php
|
52
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Rewriter.php
|
53
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Scope.php
|
54
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/SyntaxError.php
|
55
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/Value.php
|
56
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Access.php
|
57
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Arr.php
|
58
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Assign.php
|
59
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Base.php
|
60
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Block.php
|
61
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Call.php
|
62
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Class.php
|
63
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Closure.php
|
64
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Code.php
|
65
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Comment.php
|
66
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Existence.php
|
67
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Extends.php
|
68
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/For.php
|
69
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/If.php
|
70
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/In.php
|
71
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Index.php
|
72
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Literal.php
|
73
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Obj.php
|
74
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Op.php
|
75
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Param.php
|
76
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Parens.php
|
77
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Range.php
|
78
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Return.php
|
79
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Slice.php
|
80
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Splat.php
|
81
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Switch.php
|
82
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Throw.php
|
83
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Try.php
|
84
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/Value.php
|
85
|
+
- vendor/coffeescript/coffeescript/src/CoffeeScript/yy/While.php
|
86
|
+
- vendor/coffeescript/coffeescript/tests/cases/arrays.coffee
|
87
|
+
- vendor/coffeescript/coffeescript/tests/cases/assignment.coffee
|
88
|
+
- vendor/coffeescript/coffeescript/tests/cases/booleans.coffee
|
89
|
+
- vendor/coffeescript/coffeescript/tests/cases/classes.coffee
|
90
|
+
- vendor/coffeescript/coffeescript/tests/cases/comments.coffee
|
91
|
+
- vendor/coffeescript/coffeescript/tests/cases/compilation.coffee
|
92
|
+
- vendor/coffeescript/coffeescript/tests/cases/comprehensions.coffee
|
93
|
+
- vendor/coffeescript/coffeescript/tests/cases/control_flow.coffee
|
94
|
+
- vendor/coffeescript/coffeescript/tests/cases/eval.coffee
|
95
|
+
- vendor/coffeescript/coffeescript/tests/cases/exception_handling.coffee
|
96
|
+
- vendor/coffeescript/coffeescript/tests/cases/formatting.coffee
|
97
|
+
- vendor/coffeescript/coffeescript/tests/cases/function_invocation.coffee
|
98
|
+
- vendor/coffeescript/coffeescript/tests/cases/functions.coffee
|
99
|
+
- vendor/coffeescript/coffeescript/tests/cases/helpers.coffee
|
100
|
+
- vendor/coffeescript/coffeescript/tests/cases/importing.coffee
|
101
|
+
- vendor/coffeescript/coffeescript/tests/cases/interpolation.coffee
|
102
|
+
- vendor/coffeescript/coffeescript/tests/cases/javascript_literals.coffee
|
103
|
+
- vendor/coffeescript/coffeescript/tests/cases/numbers.coffee
|
104
|
+
- vendor/coffeescript/coffeescript/tests/cases/objects.coffee
|
105
|
+
- vendor/coffeescript/coffeescript/tests/cases/operators.coffee
|
106
|
+
- vendor/coffeescript/coffeescript/tests/cases/option_parser.coffee
|
107
|
+
- vendor/coffeescript/coffeescript/tests/cases/ranges.coffee
|
108
|
+
- vendor/coffeescript/coffeescript/tests/cases/regexps.coffee
|
109
|
+
- vendor/coffeescript/coffeescript/tests/cases/scope.coffee
|
110
|
+
- vendor/coffeescript/coffeescript/tests/cases/slicing_and_splicing.coffee
|
111
|
+
- vendor/coffeescript/coffeescript/tests/cases/soaks.coffee
|
112
|
+
- vendor/coffeescript/coffeescript/tests/cases/strict.coffee
|
113
|
+
- vendor/coffeescript/coffeescript/tests/cases/strings.coffee
|
114
|
+
- vendor/coffeescript/coffeescript/tests/css/style.css
|
115
|
+
- vendor/coffeescript/coffeescript/tests/index.php
|
116
|
+
- vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.1.1.js
|
117
|
+
- vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.2.0.js
|
118
|
+
- vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.3.0.js
|
119
|
+
- vendor/coffeescript/coffeescript/tests/js/lib/coffeescript_1.3.1.js
|
120
|
+
- vendor/coffeescript/coffeescript/tests/js/lib/diff.js
|
121
|
+
- vendor/coffeescript/coffeescript/tests/js/main.js
|
122
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/LICENSE.txt
|
123
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/ParserGenerator.php
|
124
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/Lempar.php
|
125
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Action.php
|
126
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/ActionTable.php
|
127
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/cli.php
|
128
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Config.php
|
129
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Data.php
|
130
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Parser.php
|
131
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/PropagationLink.php
|
132
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Rule.php
|
133
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/State.php
|
134
|
+
- vendor/coffeescript/coffeescript/vendor/ParserGenerator/PHP/ParserGenerator/Symbol.php
|
135
|
+
- vendor/composer/autoload_classmap.php
|
136
|
+
- vendor/composer/autoload_namespaces.php
|
137
|
+
- vendor/composer/autoload_psr4.php
|
138
|
+
- vendor/composer/autoload_real.php
|
139
|
+
- vendor/composer/ClassLoader.php
|
140
|
+
- vendor/composer/installed.json
|
141
|
+
- vendor/michelf/php-markdown/composer.json
|
142
|
+
- vendor/michelf/php-markdown/License.md
|
143
|
+
- vendor/michelf/php-markdown/Michelf/Markdown.inc.php
|
144
|
+
- vendor/michelf/php-markdown/Michelf/Markdown.php
|
145
|
+
- vendor/michelf/php-markdown/Michelf/MarkdownExtra.inc.php
|
146
|
+
- vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
|
147
|
+
- vendor/michelf/php-markdown/Michelf/MarkdownInterface.inc.php
|
148
|
+
- vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
|
149
|
+
- vendor/michelf/php-markdown/Readme.md
|
150
|
+
- vendor/michelf/php-markdown/Readme.php
|
151
|
+
- vendor/mthaml/mthaml/CHANGELOG
|
152
|
+
- vendor/mthaml/mthaml/composer.json
|
153
|
+
- vendor/mthaml/mthaml/docs/_static/mthaml.css
|
154
|
+
- vendor/mthaml/mthaml/docs/_theme/mthaml/theme.conf
|
155
|
+
- vendor/mthaml/mthaml/docs/conf.py
|
156
|
+
- vendor/mthaml/mthaml/docs/index.rst
|
157
|
+
- vendor/mthaml/mthaml/docs/Makefile
|
158
|
+
- vendor/mthaml/mthaml/docs/twig-syntax.rst
|
159
|
+
- vendor/mthaml/mthaml/examples/autoload.php
|
160
|
+
- vendor/mthaml/mthaml/examples/example-php.haml
|
161
|
+
- vendor/mthaml/mthaml/examples/example-php.php
|
162
|
+
- vendor/mthaml/mthaml/examples/example-twig-noext.twig
|
163
|
+
- vendor/mthaml/mthaml/examples/example-twig.haml
|
164
|
+
- vendor/mthaml/mthaml/examples/example-twig.php
|
165
|
+
- vendor/mthaml/mthaml/examples/example.twig.haml
|
166
|
+
- vendor/mthaml/mthaml/examples/README.md
|
167
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Autoloader.php
|
168
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Environment.php
|
169
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Escaping.php
|
170
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Exception/SyntaxErrorException.php
|
171
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Exception.php
|
172
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/AbstractFilter.php
|
173
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Cdata.php
|
174
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/CoffeeScript.php
|
175
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Css.php
|
176
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Escaped.php
|
177
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/FilterInterface.php
|
178
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Javascript.php
|
179
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Less/LeafoLess.php
|
180
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Less/OyejorgeLess.php
|
181
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Less.php
|
182
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/CebeMarkdown.php
|
183
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/Ciconia.php
|
184
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/MichelfMarkdown.php
|
185
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown/Parsedown.php
|
186
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Markdown.php
|
187
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Php.php
|
188
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Plain.php
|
189
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Preserve.php
|
190
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Scss.php
|
191
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Filter/Twig.php
|
192
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Indentation/Indentation.php
|
193
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Indentation/IndentationException.php
|
194
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Indentation/IndentationInterface.php
|
195
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Indentation/Undefined.php
|
196
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Comment.php
|
197
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Doctype.php
|
198
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
|
199
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Filter.php
|
200
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Insert.php
|
201
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/InterpolatedString.php
|
202
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/NestAbstract.php
|
203
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/NestInterface.php
|
204
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/NodeAbstract.php
|
205
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/ObjectRefClass.php
|
206
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/ObjectRefId.php
|
207
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Root.php
|
208
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Run.php
|
209
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Statement.php
|
210
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Tag.php
|
211
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/TagAttribute.php
|
212
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/TagAttributeInterpolation.php
|
213
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/TagAttributeList.php
|
214
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Node/Text.php
|
215
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Autoclose.php
|
216
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Escaping.php
|
217
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/MergeAttrs.php
|
218
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Midblock.php
|
219
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/NodeVisitorAbstract.php
|
220
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/NodeVisitorInterface.php
|
221
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/PhpRenderer.php
|
222
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/Printer.php
|
223
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/RendererAbstract.php
|
224
|
+
- vendor/mthaml/mthaml/lib/MtHaml/NodeVisitor/TwigRenderer.php
|
225
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Parser/Buffer.php
|
226
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Parser.php
|
227
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Runtime/AttributeInterpolation.php
|
228
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Runtime/AttributeList.php
|
229
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Runtime.php
|
230
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Support/Php/Executor.php
|
231
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Support/Twig/Extension.php
|
232
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Support/Twig/Lexer.php
|
233
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Support/Twig/Loader.php
|
234
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Target/Php.php
|
235
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Target/TargetAbstract.php
|
236
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Target/TargetInterface.php
|
237
|
+
- vendor/mthaml/mthaml/lib/MtHaml/Target/Twig.php
|
238
|
+
- vendor/mthaml/mthaml/lib/MtHaml/TreeBuilder.php
|
239
|
+
- vendor/mthaml/mthaml/lib/MtHaml/TreeBuilderException.php
|
240
|
+
- vendor/mthaml/mthaml/LICENSE
|
241
|
+
- vendor/mthaml/mthaml/phpunit.xml
|
242
|
+
- vendor/mthaml/mthaml/README.markdown
|
243
|
+
- vendor/mthaml/mthaml/test/bootstrap.php
|
244
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/EnvironmentTest.php
|
245
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/attr_list_php.test
|
246
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/attr_list_twig.test
|
247
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/boolean_attr_php.test
|
248
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/boolean_attr_twig.test
|
249
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug28_php.test
|
250
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug28_twig.test
|
251
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug42.test
|
252
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/bug8_twig.test
|
253
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/coffeescript_filter.test
|
254
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/comments.test
|
255
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/cond_cmt.test
|
256
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype.test
|
257
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_html4.test
|
258
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_invalid.test
|
259
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_invalid_xhtml.test
|
260
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_php.test
|
261
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/doctype_xhtml.test
|
262
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/filters.test
|
263
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/insert_non_echo_php.test
|
264
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/insert_non_echo_twig.test
|
265
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/interpolation_in_html_attrs_php.test
|
266
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/interpolation_in_html_attrs_twig.test
|
267
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/less_filter_leafo.test
|
268
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/less_filter_oyejorge.test
|
269
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_cebemarkdown.test
|
270
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_ciconia.test
|
271
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_michelf.test
|
272
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_filter_parsedown.test
|
273
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/markdown_optimization_filter_michelf.test
|
274
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/mergeattrs.test
|
275
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/nuke_inner_whitespace.test
|
276
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/nuke_outer_whitespace.test
|
277
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/object_ref_php.test
|
278
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/object_ref_twig.test
|
279
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php.test
|
280
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_autoescaping.test
|
281
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_autoescaping_once.test
|
282
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_blocks.test
|
283
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/php_filters.test
|
284
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/scss_filter.test
|
285
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/strip_inline_comments_php.test
|
286
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/test.test
|
287
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/trailing_semicolon_php.test
|
288
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/try_catch_php.test
|
289
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig.test
|
290
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig_blocks.test
|
291
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig_filters.test
|
292
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/twig_whitespace.test
|
293
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/environment/whitespace.test
|
294
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/autoclose.test
|
295
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/escaping.test
|
296
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/escaping_attr_once.test
|
297
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/escaping_html_false.test
|
298
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/mergeattrs.test
|
299
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/midblock.test
|
300
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/nodevisitors/midblock_002.test
|
301
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attr_list.test
|
302
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs.test
|
303
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs_002.test
|
304
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs_003.test
|
305
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/attrs_html_linebreak.test
|
306
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/blocks.test
|
307
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/blocks_002.test
|
308
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/boolean_attr.test
|
309
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/bug28.test
|
310
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/bug8.test
|
311
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/cond_cmt.test
|
312
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/doctype.test
|
313
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/double_equal.test
|
314
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/empty_line_after_multiline.test
|
315
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_001.test
|
316
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_002.test
|
317
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_003.test
|
318
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_004.test
|
319
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_005.test
|
320
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_006.test
|
321
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_007.test
|
322
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_008.test
|
323
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_009.test
|
324
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_010.test
|
325
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_013.test
|
326
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_016.test
|
327
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_017.test
|
328
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_018.test
|
329
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_019.test
|
330
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/errors_020.test
|
331
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters.test
|
332
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_002.test
|
333
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_003.test
|
334
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_004.test
|
335
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_005.test
|
336
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/filters_006.test
|
337
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/insertflags.test
|
338
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/interpolation.test
|
339
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/interpolation_in_html_attrs.test
|
340
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/multiline.test
|
341
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/multiline_code.test
|
342
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/multiple_attr_kinds.test
|
343
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/non_rendered_comment.test
|
344
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ns.test
|
345
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/object_ref.test
|
346
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/object_ref_error1.test
|
347
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/object_ref_error2.test
|
348
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/quotes_in_haml.test
|
349
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby19_attrs.test
|
350
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma.test
|
351
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma_errors_001.test
|
352
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma_errors_002.test
|
353
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/ruby_attrs_comma_errors_003.test
|
354
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/standard.test
|
355
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/parser/tagflags.test
|
356
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/runtime/php_filters.test
|
357
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/runtime/twig_filters.test
|
358
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/fixtures/Support/Php/Executor.001.haml
|
359
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/HamlSpecTest.php
|
360
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/IndentationTest.php
|
361
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/Node/DoctypeTest.php
|
362
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/Node/NodeTest.php
|
363
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/NodeVisitor/PhpRendererTest.php
|
364
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/NodeVisitor/TwigRendererTest.php
|
365
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/NodeVisitorsTest.php
|
366
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/Parser/BufferTest.php
|
367
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/ParserTest.php
|
368
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/RuntimeTest.php
|
369
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/Support/Php/ExecutorTest.php
|
370
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/Support/Twig/LoaderTest.php
|
371
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/TestCase.php
|
372
|
+
- vendor/mthaml/mthaml/test/MtHaml/Tests/TestCaseTest.php
|
373
|
+
- README.md
|
374
|
+
homepage: http://github.com/ezekg/guard-mthaml
|
375
|
+
licenses:
|
376
|
+
- MIT
|
377
|
+
metadata: {}
|
378
|
+
post_install_message:
|
379
|
+
rdoc_options: []
|
380
|
+
require_paths:
|
381
|
+
- lib
|
382
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
383
|
+
requirements:
|
384
|
+
- - '>='
|
385
|
+
- !ruby/object:Gem::Version
|
386
|
+
version: '0'
|
387
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
388
|
+
requirements:
|
389
|
+
- - '>='
|
390
|
+
- !ruby/object:Gem::Version
|
391
|
+
version: 1.3.6
|
392
|
+
requirements: []
|
393
|
+
rubyforge_project: guard-mthaml
|
394
|
+
rubygems_version: 2.0.14
|
395
|
+
signing_key:
|
396
|
+
specification_version: 4
|
397
|
+
summary: Guard gem for MtHaml
|
398
|
+
test_files: []
|