gitextract_l4a1w08_/ ├── .gitignore ├── Gemfile ├── LICENSE ├── README ├── Rakefile ├── bin/ │ └── poetics ├── lib/ │ ├── poetics/ │ │ ├── library/ │ │ │ └── code_loader.rb │ │ ├── library.rb │ │ ├── parser/ │ │ │ ├── parser.rb │ │ │ └── poetics.kpeg │ │ ├── parser.rb │ │ ├── syntax/ │ │ │ ├── ast.rb │ │ │ ├── literal.rb │ │ │ └── node.rb │ │ ├── syntax.rb │ │ └── version.rb │ └── poetics.rb ├── poetics.gemspec └── spec/ ├── custom/ │ ├── matchers/ │ │ └── parse_as.rb │ ├── runner/ │ │ └── relates.rb │ └── utils/ │ ├── options.rb │ └── script.rb ├── custom.rb ├── default.mspec ├── spec_helper.rb └── syntax/ └── literal_spec.rb