va-ruby-style 0.0.1 → 0.1.0
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/Gemfile.lock +8 -6
- data/README.md +1 -1
- data/default.yml +3 -0
- data/va-ruby-style.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd7005b1af2645c1ec6636a95a0e600ea213b139
|
|
4
|
+
data.tar.gz: 5cfa7ba1b46964e4d43ffdd597a6df70c9cfe4ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff9a116bdd6d2e801c8c6e841890ddd8e9ec74214dc74a9cb7b0451ba9f3ffd853617e0075f4a5d5ed2ffb022cbe01e8bbc73b862419e9f2ba8bae1255bf3f1a
|
|
7
|
+
data.tar.gz: 7346643f276932488097003667d7c3bbb730b662ad196948eff99f952cee8dd381cb22c47b899605b75b05f471d4e96f4132be7eea66a2ba7562a7b4f6f0b08e
|
data/Gemfile.lock
CHANGED
|
@@ -2,7 +2,7 @@ PATH
|
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
4
|
va-ruby-style (0.0.0)
|
|
5
|
-
rubocop (= 0.
|
|
5
|
+
rubocop (= 0.60.0)
|
|
6
6
|
thor (= 0.19.4)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
@@ -10,18 +10,20 @@ GEM
|
|
|
10
10
|
specs:
|
|
11
11
|
ast (2.4.0)
|
|
12
12
|
byebug (9.1.0)
|
|
13
|
+
jaro_winkler (1.5.1)
|
|
13
14
|
parallel (1.12.1)
|
|
14
|
-
parser (2.5.
|
|
15
|
+
parser (2.5.3.0)
|
|
15
16
|
ast (~> 2.4.0)
|
|
16
17
|
powerpack (0.1.2)
|
|
17
18
|
rainbow (3.0.0)
|
|
18
|
-
rubocop (0.
|
|
19
|
+
rubocop (0.60.0)
|
|
20
|
+
jaro_winkler (~> 1.5.1)
|
|
19
21
|
parallel (~> 1.10)
|
|
20
|
-
parser (>= 2.5)
|
|
22
|
+
parser (>= 2.5, != 2.5.1.1)
|
|
21
23
|
powerpack (~> 0.1)
|
|
22
24
|
rainbow (>= 2.2.2, < 4.0)
|
|
23
25
|
ruby-progressbar (~> 1.7)
|
|
24
|
-
unicode-display_width (~> 1.
|
|
26
|
+
unicode-display_width (~> 1.4.0)
|
|
25
27
|
ruby-progressbar (1.10.0)
|
|
26
28
|
thor (0.19.4)
|
|
27
29
|
unicode-display_width (1.4.0)
|
|
@@ -35,4 +37,4 @@ DEPENDENCIES
|
|
|
35
37
|
va-ruby-style!
|
|
36
38
|
|
|
37
39
|
BUNDLED WITH
|
|
38
|
-
1.16.
|
|
40
|
+
1.16.6
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ The gem can be easily set up both in new or existing projects (even if already u
|
|
|
20
20
|
|
|
21
21
|
### New projects
|
|
22
22
|
|
|
23
|
-
This is the easiest form: simply add the gem to the project's `Gemfile` and run `
|
|
23
|
+
This is the easiest form: simply add the gem to the project's `Gemfile` and run `va_ruby_style init`. This command will create the project's `.rubocop.yml` file.
|
|
24
24
|
|
|
25
25
|
From this moment, we're able to use `rubocop` normally and check if all files follow the specified base style rules.
|
|
26
26
|
|
data/default.yml
CHANGED
data/va-ruby-style.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'va-ruby-style'
|
|
5
|
-
s.version = '0.0
|
|
5
|
+
s.version = '0.1.0'
|
|
6
6
|
s.date = '2018-11-10'
|
|
7
7
|
s.summary = 'Visible Alpha\'s ruby style'
|
|
8
8
|
s.description = 'Visible Alpha\'s ruby style keeps a centralized set of linter rules for the ruby programming language.'
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
|
|
17
17
|
s.required_ruby_version = '>= 2.2.2'
|
|
18
18
|
|
|
19
|
-
s.add_dependency 'rubocop', '0.
|
|
19
|
+
s.add_dependency 'rubocop', '0.60.0'
|
|
20
20
|
s.add_dependency 'thor', '0.19.4'
|
|
21
21
|
|
|
22
22
|
s.add_development_dependency 'bundler', '~> 1.12'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: va-ruby-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Monteiro
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.60.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.60.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: thor
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|