rubocop-md 0.3.0 → 0.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 914629c131d136ea85643a2121decc4bfebb5213a6f5390a16c5fd6273ae632c
4
- data.tar.gz: 8b8bf3581a9b1217b1a8aa843d6719c0425c6555e1686036a3b6f2fd2c118e46
3
+ metadata.gz: 9eb807fc0ec080261719e989d665b63e329255144dd10d3627eaeb0e4d812e08
4
+ data.tar.gz: 495bad6926f4b2e916309251cb621025ebd608dab38c50f9d1bf5ff4319be9e7
5
5
  SHA512:
6
- metadata.gz: 5feb50478f1924e6bd518505b88d196575eeeaf842cbecd653fd7dd3e2baaf35dcd2300b3489d826f970828440944f7e4b27c6225c62080081c08ab73b8568b9
7
- data.tar.gz: fee4f59f4ac8ff91a48f2de1f324ca3c4ac5d7041bfa54b3f61c1d2cadd7cfba9c22895146d68d9c11b84e0951500899a76a36b24e0bbe974f8969352e4264cf
6
+ metadata.gz: cef788fcc7eacc9ecabcb5e4a37b7fc155f03d21352d1cadd80eede9745fe41fa112134767c9a7ca72b3771c1a488d873a05f69bb76287e0d0e3be75f97eaa43
7
+ data.tar.gz: 37492d3e85be408a09d91a8002cd34da7229eff314e0e55f23977a9f1466e8bccd1f39b235e6604db82d1d8d65d07f3ef50c3a735c341045de64a23958177c8e
@@ -14,9 +14,6 @@ AllCops:
14
14
  StyleGuideCopsOnly: false
15
15
  TargetRubyVersion: 2.3
16
16
 
17
- Rails:
18
- Enabled: false
19
-
20
17
  Style/Documentation:
21
18
  Exclude:
22
19
  - 'test/**/*.rb'
@@ -41,7 +38,7 @@ Naming/FileName:
41
38
  Exclude:
42
39
  - 'lib/rubocop-md.rb'
43
40
 
44
- Metrics/LineLength:
41
+ Layout/LineLength:
45
42
  Max: 100
46
43
  Exclude:
47
44
  - 'test/**/*.rb'
@@ -9,11 +9,13 @@ matrix:
9
9
  include:
10
10
  - rvm: ruby-head
11
11
  gemfile: gemfiles/rubocopmaster.gemfile
12
- - rvm: jruby-9.1.0.0
12
+ - rvm: jruby-9.2.8.0
13
13
  gemfile: Gemfile
14
- - rvm: 2.5.0
14
+ - rvm: 2.6
15
15
  gemfile: gemfiles/rubocopmaster.gemfile
16
- - rvm: 2.5.0
16
+ - rvm: 2.6
17
+ gemfile: Gemfile
18
+ - rvm: 2.5
17
19
  gemfile: Gemfile
18
20
  - rvm: 2.4.2
19
21
  gemfile: Gemfile
@@ -22,7 +24,7 @@ matrix:
22
24
  allow_failures:
23
25
  - rvm: ruby-head
24
26
  gemfile: gemfiles/rubocopmaster.gemfile
25
- - rvm: jruby-9.1.0.0
27
+ - rvm: jruby-9.2.8.0
26
28
  gemfile: Gemfile
27
29
  - rvm: 2.5.0
28
30
  gemfile: gemfiles/rubocopmaster.gemfile
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## master (unreleased)
4
4
 
5
+ ## 0.3.1 (2019-12-25)
6
+
7
+ - Upgrade to RuboCop 0.78 ([@palkan][])
8
+
9
+ Change the default config to use the new cop names for (e.g., `Layout/LineLength`).
10
+
5
11
  ## 0.3.0 (2019-05-14)
6
12
 
7
13
  - **Drop Ruby 2.2 support** ([@palkan][])
@@ -17,6 +17,11 @@ Layout/TrailingBlankLines:
17
17
  - '**/*.md'
18
18
  - '**/*.markdown'
19
19
 
20
+ Layout/TrailingEmptyLines:
21
+ Exclude:
22
+ - '**/*.md'
23
+ - '**/*.markdown'
24
+
20
25
  Lint/UselessAssignment:
21
26
  Exclude:
22
27
  - '**/*.md'
@@ -47,6 +52,6 @@ Style/FrozenStringLiteralComment:
47
52
  - '**/*.md'
48
53
  - '**/*.markdown'
49
54
 
50
- Metrics/LineLength:
55
+ Layout/LineLength:
51
56
  IgnoredPatterns:
52
57
  - !ruby/regexp /^\#/
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Markdown
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-md
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dementyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-14 00:00:00.000000000 Z
11
+ date: 2019-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop