sevenwire-rubocop 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.vscode/settings.json +22 -0
- data/Gemfile.lock +1 -1
- data/RELEASING.md +4 -4
- data/departments/layout.yml +5 -1
- data/lib/sevenwire/rubocop/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b23155cc3762d557e3cd7084d496ad61dea26b33052d0467b478852a0b7cf01e
|
4
|
+
data.tar.gz: 31c8ceab104e8d0efcffa1d9acdc07a759eb9d3f20dfad0fe84878d7c637c433
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efa8bfdc02abf321c827b93b7f0cc8b46ab0f671dead57aefc3eeb407662f45c21ef0a8e6bcdadb941780ed55e3c7583089818041dc8ce1d741b788615ca8e2a
|
7
|
+
data.tar.gz: 868afbda896182f6096b9480b6500a54329ecc8a99d76e1fe36ced3139981a19045c372ac5e27fec6b687e2ec44878d42199c861a3ce1d57c3518d01ab6204f1
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"cSpell.words": [
|
3
|
+
"Gemfile",
|
4
|
+
"Rubocop",
|
5
|
+
"Sevenwire",
|
6
|
+
"rspec"
|
7
|
+
],
|
8
|
+
"workbench.colorCustomizations": {
|
9
|
+
"activityBar.activeBackground": "#d04649",
|
10
|
+
"activityBar.activeBorder": "#37cb34",
|
11
|
+
"activityBar.background": "#d04649",
|
12
|
+
"activityBar.foreground": "#e7e7e7",
|
13
|
+
"activityBar.inactiveForeground": "#e7e7e799",
|
14
|
+
"activityBarBadge.background": "#37cb34",
|
15
|
+
"activityBarBadge.foreground": "#15202b",
|
16
|
+
"statusBar.background": "#b52e31",
|
17
|
+
"statusBar.border": "#b52e31",
|
18
|
+
"statusBar.foreground": "#e7e7e7",
|
19
|
+
"statusBarItem.hoverBackground": "#d04649"
|
20
|
+
},
|
21
|
+
"peacock.color": "#b52e31"
|
22
|
+
}
|
data/Gemfile.lock
CHANGED
data/RELEASING.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# Releasing
|
2
2
|
|
3
|
-
1.
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
1. Update version.rb file accordingly.
|
4
|
+
2. Tag the release: `git tag vVERSION`
|
5
|
+
3. Push changes: `git push --tags`
|
6
|
+
4. Build and publish:
|
7
7
|
|
8
8
|
```bash
|
9
9
|
bundle exec rake build
|
data/departments/layout.yml
CHANGED
@@ -9,8 +9,12 @@ Layout/EndAlignment:
|
|
9
9
|
Enabled: true
|
10
10
|
EnforcedStyleAlignWith: variable
|
11
11
|
|
12
|
+
Layout/FirstHashElementIndentation:
|
13
|
+
Enabled: true
|
14
|
+
EnforcedStyle: consistent
|
15
|
+
|
12
16
|
Layout/LineLength:
|
13
|
-
Max:
|
17
|
+
Max: 80
|
14
18
|
|
15
19
|
Layout/SpaceAroundMethodCallOperator:
|
16
20
|
Enabled: true
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sevenwire-rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Arbini
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-05-
|
12
|
+
date: 2020-05-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubocop
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- ".gitignore"
|
93
93
|
- ".rubocop.yml"
|
94
94
|
- ".ruby-version"
|
95
|
+
- ".vscode/settings.json"
|
95
96
|
- Gemfile
|
96
97
|
- Gemfile.lock
|
97
98
|
- LICENSE
|