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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85a5e606c1a9efb8809e3c4b3dca8ccac453a2f5d1b96ad690b723ce53d4179d
4
- data.tar.gz: 50863549ffe0895d2699198a79905ccc1a7c4335b578f45d30994b6b22117427
3
+ metadata.gz: b23155cc3762d557e3cd7084d496ad61dea26b33052d0467b478852a0b7cf01e
4
+ data.tar.gz: 31c8ceab104e8d0efcffa1d9acdc07a759eb9d3f20dfad0fe84878d7c637c433
5
5
  SHA512:
6
- metadata.gz: c8b0316fa9659a4f0b87db0e1747573539a70a055384c807704f94b1ee4c8d5678ba263b0017f083d4525098993cd35d8d979a6a307e689947966d3852e18de1
7
- data.tar.gz: 0f9fde5b1a41c1eb8b29a5d026c4d7611dd28171eb97349ec7d20ee5468f0192afb89b0d54af912e7461d9d044f05f6e53754aa833b8f88865c8f2660d61b025
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
+ }
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sevenwire-rubocop (1.2.0)
4
+ sevenwire-rubocop (1.3.0)
5
5
  rubocop (~> 0.82.0)
6
6
  rubocop-performance (~> 1.5)
7
7
  rubocop-rspec (~> 1.39.0)
@@ -1,9 +1,9 @@
1
1
  # Releasing
2
2
 
3
- 1. Update version.rb file accordingly.
4
- 1. Tag the release: `git tag vVERSION`
5
- 1. Push changes: `git push --tags`
6
- 1. Build and publish:
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
@@ -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: 100
17
+ Max: 80
14
18
 
15
19
  Layout/SpaceAroundMethodCallOperator:
16
20
  Enabled: true
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sevenwire
4
4
  module Rubocop
5
- VERSION = "1.2.0"
5
+ VERSION = "1.3.0"
6
6
  end
7
7
  end
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.2.0
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-02 00:00:00.000000000 Z
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