rubocop-bridgetown 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -1
  3. data/README.md +5 -5
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a205a363337cada7211d4103d6fd01271b89362a413ce838b66e4feee948c5f
4
- data.tar.gz: 3c23008a3d1f4a5d92fb6cf78db83c70a58d3342054e582b075fca7d3b04b806
3
+ metadata.gz: 11a1f8d566ad6962a16c7c1f2e87e1ee1a87b0569147636eca24b650e9a65b2b
4
+ data.tar.gz: 688bb6290ab6d2c443cbc7e33a692b428d17717a178849668db1c345e02546c4
5
5
  SHA512:
6
- metadata.gz: 2592be7677e351473b14e95bb2a56db67e6eeb3cd2e17f804ecd38a0bc975f3db3afc254165a35d5b8195f04b8309c04a0083c37e16f8b219d490a2c83c72702
7
- data.tar.gz: 9041f889e2a4c847e82de9e1eb6a5f5d516d311f20d064b952b060f888243387df919a5b99caa22a5091441bd288b8c469daa898eb55e2953639ed3643a93a37
6
+ metadata.gz: 4a0d668b99ad86771d7ea7a740d22d35ff9cb3661f42adbba7161a35936ea03f4fad21c58a08fd5d2661aae8b1b7fd757252dbb3001a61a800ac65e4100d6288
7
+ data.tar.gz: 49d8e45ba882157533e61ea7c0cf7fcfa2c76abc229ffb6da779d10e1c4d644c149094f93fe0274cda9d72ab50f0ec3426cd3e45bc13421899c3ed2d8cf18815
@@ -7,6 +7,7 @@ AllCops:
7
7
  - bin/**/*
8
8
  - exe/**/*
9
9
  - benchmark/**/*
10
+ - node_modules/**/*
10
11
  - script/**/*
11
12
  - vendor/**/*
12
13
  - tmp/**/*
@@ -34,7 +35,7 @@ Lint/StructNewOverride:
34
35
  Lint/UnreachableCode:
35
36
  Severity: error
36
37
  Metrics/AbcSize:
37
- Max: 21
38
+ Max: 24
38
39
  Metrics/ClassLength:
39
40
  Max: 240
40
41
  Layout/LineLength:
data/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  A RuboCop extension to enforce common code style in Bridgetown plugins.
4
4
 
5
- [![Gem Version](https://img.shields.io/gem/v/rubocop-bridgetown.svg?label=Latest%20Release)][rubygems]
6
- [![RuboCop Support](https://img.shields.io/badge/Rubocop%20Support-0.68.0%20--%200.80.x-green.svg)][rubocop-releases]
5
+ ![Gem Version](https://img.shields.io/gem/v/rubocop-bridgetown.svg?label=Latest%20Release)
6
+ ![RuboCop Support](https://img.shields.io/badge/Rubocop%20Support-0.81.0-green.svg)
7
7
 
8
8
 
9
9
  ## Installation
@@ -19,12 +19,12 @@ or if you prefer Bundler, add it to your `Gemfile` or `gemspec`
19
19
  ```ruby
20
20
  # Gemfile
21
21
 
22
- gem "rubocop-bridgetown", "~> 0.1.0"
22
+ gem "rubocop-bridgetown", "~> 0.2.0"
23
23
  ```
24
24
  ```ruby
25
25
  # <plugin>.gemspec
26
26
 
27
- spec.add_development_dependency "rubocop-bridgetown", "~> 0.1.0"
27
+ spec.add_development_dependency "rubocop-bridgetown", "~> 0.2.0"
28
28
  ```
29
29
  and run `bundle install`
30
30
 
@@ -32,7 +32,7 @@ and run `bundle install`
32
32
  ## Usage
33
33
 
34
34
  You need to tell RuboCop to load the extension and *inherit* the custom RuboCop configuration advocated by
35
- [Bridgetown](https://github.com/bridgetown).
35
+ [Bridgetown](https://github.com/bridgetownrb/bridgetown).
36
36
 
37
37
  Place the following at the top of your `.rubocop.yml`.
38
38
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-bridgetown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-10 00:00:00.000000000 Z
11
+ date: 2020-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
98
  - !ruby/object:Gem::Version
99
99
  version: '0'
100
100
  requirements: []
101
- rubygems_version: 3.0.8
101
+ rubygems_version: 3.1.4
102
102
  signing_key:
103
103
  specification_version: 4
104
104
  summary: Code style check for Bridgetown plugins