gitextract_6uwmr_5x/ ├── .gitignore ├── .rspec ├── .rubocop.yml ├── COPYING.txt ├── Gemfile ├── History.txt ├── README.md ├── Rakefile ├── bin/ │ └── htmlbeautifier ├── contributors.txt ├── htmlbeautifier.gemspec ├── lib/ │ ├── htmlbeautifier/ │ │ ├── builder.rb │ │ ├── html_parser.rb │ │ ├── parser.rb │ │ ├── ruby_indenter.rb │ │ └── version.rb │ └── htmlbeautifier.rb └── spec/ ├── .rubocop.yml ├── behavior_spec.rb ├── documents_spec.rb ├── executable_spec.rb ├── parser_spec.rb └── spec_helper.rb