unparser 0.4.8 → 0.4.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- metadata +3 -59
- data/.github/workflows/ci.yml +0 -90
- data/.gitignore +0 -37
- data/.rspec +0 -4
- data/.rubocop.yml +0 -126
- data/Changelog.md +0 -162
- data/Gemfile +0 -9
- data/Gemfile.lock +0 -111
- data/LICENSE +0 -20
- data/Rakefile +0 -22
- data/config/devtools.yml +0 -2
- data/config/flay.yml +0 -3
- data/config/flog.yml +0 -2
- data/config/mutant.yml +0 -6
- data/config/reek.yml +0 -98
- data/config/yardstick.yml +0 -2
- data/spec/integration/unparser/corpus_spec.rb +0 -125
- data/spec/integrations.yml +0 -92
- data/spec/spec_helper.rb +0 -42
- data/spec/unit/unparser/buffer/append_spec.rb +0 -24
- data/spec/unit/unparser/buffer/append_without_prefix_spec.rb +0 -23
- data/spec/unit/unparser/buffer/capture_content_spec.rb +0 -17
- data/spec/unit/unparser/buffer/content_spec.rb +0 -38
- data/spec/unit/unparser/buffer/fresh_line_spec.rb +0 -20
- data/spec/unit/unparser/buffer/indent_spec.rb +0 -20
- data/spec/unit/unparser/buffer/nl_spec.rb +0 -16
- data/spec/unit/unparser/buffer/unindent_spec.rb +0 -20
- data/spec/unit/unparser/color_spec.rb +0 -40
- data/spec/unit/unparser/comments/consume_spec.rb +0 -22
- data/spec/unit/unparser/comments/take_all_spec.rb +0 -19
- data/spec/unit/unparser/comments/take_before_spec.rb +0 -46
- data/spec/unit/unparser/comments/take_eol_comments_spec.rb +0 -32
- data/spec/unit/unparser/diff_spec.rb +0 -189
- data/spec/unit/unparser/emitter/class_methods/handle_spec.rb +0 -17
- data/spec/unit/unparser/validation_spec.rb +0 -327
- data/spec/unit/unparser_spec.rb +0 -1920
- data/unparser.gemspec +0 -35
data/unparser.gemspec
DELETED
@@ -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
|