rubocop-elegant 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/rubocop-elegant.gemspec +5 -2
- metadata +33 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 241a20dbc086ba4e29a5f1b694ff4e044adf15097b4e6669616c911803d6a5cb
|
|
4
|
+
data.tar.gz: 331c440951cbf56be3dbacbf605f98e71a0c00964afe0d00c8829e6b961878b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa319c503a325db12419461349d210f9b7039c988da81187dc027368fad3a5d97af72883d331a67ee5d7c895319d6be27e224f327be9d43a2c606a883805548c
|
|
7
|
+
data.tar.gz: 860d3c05d81f9560f45e63f49dc406e9c4faed40098955c4f907edd66c9a4a326b83083c0d91630b589e19b0d58e2bf2d1d5f0f6a195b2317966d529e105e1e1
|
data/rubocop-elegant.gemspec
CHANGED
|
@@ -9,11 +9,11 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
|
10
10
|
s.required_ruby_version = '>=2.2'
|
|
11
11
|
s.name = 'rubocop-elegant'
|
|
12
|
-
s.version = '0.0.
|
|
12
|
+
s.version = '0.0.3'
|
|
13
13
|
s.license = 'MIT'
|
|
14
14
|
s.summary = 'Set of custom RuboCop cops for elegant Ruby coding'
|
|
15
15
|
s.description =
|
|
16
|
-
'
|
|
16
|
+
'RuboCop plugin enforcing elegant coding style: no comments (except SPDX and magic), no empty lines in methods'
|
|
17
17
|
s.authors = ['Yegor Bugayenko']
|
|
18
18
|
s.email = 'yegor256@gmail.com'
|
|
19
19
|
s.homepage = 'https://github.com/yegor256/rubocop-elegant'
|
|
@@ -21,4 +21,7 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.rdoc_options = ['--charset=UTF-8']
|
|
22
22
|
s.extra_rdoc_files = ['README.md']
|
|
23
23
|
s.metadata['rubygems_mfa_required'] = 'true'
|
|
24
|
+
s.metadata['default_lint_roller_plugin'] = 'RuboCop::Elegant::Plugin'
|
|
25
|
+
s.add_dependency 'lint_roller', '~> 1.1'
|
|
26
|
+
s.add_dependency 'rubocop', '~> 1.75'
|
|
24
27
|
end
|
metadata
CHANGED
|
@@ -1,15 +1,44 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-elegant
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yegor Bugayenko
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
-
dependencies:
|
|
12
|
-
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: lint_roller
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.1'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.1'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rubocop
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '1.75'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.75'
|
|
40
|
+
description: 'RuboCop plugin enforcing elegant coding style: no comments (except SPDX
|
|
41
|
+
and magic), no empty lines in methods'
|
|
13
42
|
email: yegor256@gmail.com
|
|
14
43
|
executables: []
|
|
15
44
|
extensions: []
|
|
@@ -35,6 +64,7 @@ licenses:
|
|
|
35
64
|
- MIT
|
|
36
65
|
metadata:
|
|
37
66
|
rubygems_mfa_required: 'true'
|
|
67
|
+
default_lint_roller_plugin: RuboCop::Elegant::Plugin
|
|
38
68
|
rdoc_options:
|
|
39
69
|
- "--charset=UTF-8"
|
|
40
70
|
require_paths:
|