rubocop-schema-gen 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-schema-gen
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Neil E. Pearson
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-04-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: asciidoctor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.14
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.14
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.11'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.11'
41
+ description: Generate JSON schemas for IDE integration with Rubocop
42
+ email:
43
+ - neil@helium.net.au
44
+ executables:
45
+ - rubocop-schema-gen
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - ".rspec"
51
+ - ".rubocop.yml"
52
+ - ".ruby-version"
53
+ - ".travis.yml"
54
+ - CODE_OF_CONDUCT.md
55
+ - Gemfile
56
+ - LICENSE.txt
57
+ - README.md
58
+ - Rakefile
59
+ - assets/templates/cop_schema.yml
60
+ - assets/templates/schema.yml
61
+ - bin/console
62
+ - bin/setup
63
+ - exe/rubocop-schema-gen
64
+ - lib/rubocop/schema.rb
65
+ - lib/rubocop/schema/cache.rb
66
+ - lib/rubocop/schema/cli.rb
67
+ - lib/rubocop/schema/cop_schema.rb
68
+ - lib/rubocop/schema/lockfile_inspector.rb
69
+ - lib/rubocop/schema/scraper.rb
70
+ - lib/rubocop/schema/templates.rb
71
+ - lib/rubocop/schema/value_objects.rb
72
+ - lib/rubocop/schema/version.rb
73
+ - rubocop-schema.gemspec
74
+ - rubocop-schema.json
75
+ homepage: https://github.com/hx/rubocop-schema
76
+ licenses:
77
+ - MIT
78
+ metadata:
79
+ homepage_uri: https://github.com/hx/rubocop-schema
80
+ source_code_uri: https://github.com/hx/rubocop-schema
81
+ changelog_uri: https://github.com/hx/rubocop-schema
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 3.0.0
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubygems_version: 3.2.3
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: Generate JSON schemas for IDE integration with Rubocop
101
+ test_files: []