unparser 0.4.8 → 0.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. metadata +3 -59
  4. data/.github/workflows/ci.yml +0 -90
  5. data/.gitignore +0 -37
  6. data/.rspec +0 -4
  7. data/.rubocop.yml +0 -126
  8. data/Changelog.md +0 -162
  9. data/Gemfile +0 -9
  10. data/Gemfile.lock +0 -111
  11. data/LICENSE +0 -20
  12. data/Rakefile +0 -22
  13. data/config/devtools.yml +0 -2
  14. data/config/flay.yml +0 -3
  15. data/config/flog.yml +0 -2
  16. data/config/mutant.yml +0 -6
  17. data/config/reek.yml +0 -98
  18. data/config/yardstick.yml +0 -2
  19. data/spec/integration/unparser/corpus_spec.rb +0 -125
  20. data/spec/integrations.yml +0 -92
  21. data/spec/spec_helper.rb +0 -42
  22. data/spec/unit/unparser/buffer/append_spec.rb +0 -24
  23. data/spec/unit/unparser/buffer/append_without_prefix_spec.rb +0 -23
  24. data/spec/unit/unparser/buffer/capture_content_spec.rb +0 -17
  25. data/spec/unit/unparser/buffer/content_spec.rb +0 -38
  26. data/spec/unit/unparser/buffer/fresh_line_spec.rb +0 -20
  27. data/spec/unit/unparser/buffer/indent_spec.rb +0 -20
  28. data/spec/unit/unparser/buffer/nl_spec.rb +0 -16
  29. data/spec/unit/unparser/buffer/unindent_spec.rb +0 -20
  30. data/spec/unit/unparser/color_spec.rb +0 -40
  31. data/spec/unit/unparser/comments/consume_spec.rb +0 -22
  32. data/spec/unit/unparser/comments/take_all_spec.rb +0 -19
  33. data/spec/unit/unparser/comments/take_before_spec.rb +0 -46
  34. data/spec/unit/unparser/comments/take_eol_comments_spec.rb +0 -32
  35. data/spec/unit/unparser/diff_spec.rb +0 -189
  36. data/spec/unit/unparser/emitter/class_methods/handle_spec.rb +0 -17
  37. data/spec/unit/unparser/validation_spec.rb +0 -327
  38. data/spec/unit/unparser_spec.rb +0 -1920
  39. data/unparser.gemspec +0 -35
@@ -1,35 +0,0 @@
1
- Gem::Specification.new do |gem|
2
- gem.name = 'unparser'
3
- gem.version = '0.4.8'
4
-
5
- gem.authors = ['Markus Schirp']
6
- gem.email = 'mbj@schirp-dso.com'
7
- gem.summary = 'Generate equivalent source for parser gem AST nodes'
8
-
9
- gem.description = gem.summary
10
- gem.homepage = 'http://github.com/mbj/unparser'
11
- gem.license = 'MIT'
12
-
13
- gem.files = `git ls-files`.split("\n")
14
- gem.test_files = `git ls-files -- {spec,features}/*`.split("\n")
15
- gem.require_paths = %w[lib]
16
- gem.extra_rdoc_files = %w[README.md]
17
- gem.executables = %w[unparser]
18
-
19
- gem.add_dependency('abstract_type', '~> 0.0.7')
20
- gem.add_dependency('adamantium', '~> 0.2.0')
21
- gem.add_dependency('anima', '~> 0.3.1')
22
- gem.add_dependency('concord', '~> 0.1.5')
23
- gem.add_dependency('diff-lcs', '~> 1.3')
24
- gem.add_dependency('equalizer', '~> 0.0.9')
25
- gem.add_dependency('mprelude', '~> 0.1.0')
26
- gem.add_dependency('parser', '>= 2.6.5')
27
- gem.add_dependency('procto', '~> 0.0.2')
28
-
29
- gem.add_development_dependency('mutant', '~> 0.9.9')
30
- gem.add_development_dependency('mutant-rspec', '~> 0.9.9')
31
- gem.add_development_dependency('rspec', '~> 3.9')
32
- gem.add_development_dependency('rspec-core', '~> 3.9')
33
- gem.add_development_dependency('rspec-its', '~> 1.2.0')
34
- gem.add_development_dependency('rubocop', '~> 0.79.0')
35
- end