qiita-markdown 0.8.0 → 0.8.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.

Potentially problematic release.


This version of qiita-markdown might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef101af1f76d71dea59fe6ea077b5ba69e21f2f7
4
- data.tar.gz: 669da8457ddc379eee5e5a6fcbc4fab9d6176bc1
3
+ metadata.gz: d284abc805ca19c3886243dd9c0ea12f202fbd77
4
+ data.tar.gz: d0229b4548b2f2bd731d394a9ce6294158c01334
5
5
  SHA512:
6
- metadata.gz: 10a4aa30b42713f76af7481c237720eef4d57e628be172747e3e5edb8fe7a35999e88d35f0c62afae144c41a70c5ebe416d5ecc6aeae603c5cbcb0e59df0e41d
7
- data.tar.gz: fc88f07dc2fbd3ee5683fdbc6b632391be4ba3472cec81e220fa9393134ea65808e57b0e90c7093307134e13285f2f272e8bd84c6582655fce6f1f94e9971c00
6
+ metadata.gz: 8ab18f144b375ddad09a7854dd460f7ef1c2e7051cab8857683b3cf390627ea21ab2c592d2a6ad9a1f9af89f59b00e6edec50e0334d3c06f99f67183710d7820
7
+ data.tar.gz: 3ddea330d70697ff646685727d330739276e2a3da0ed33b33e8617132611501142e1e00b9f2c91bde710a7d4e872c6e9809746236a9aa3848d56bc373edff849
@@ -1,5 +1,8 @@
1
1
  inherit_from: .rubocop_todo.yml
2
2
 
3
+ Metrics/ClassLength:
4
+ Enabled: false
5
+
3
6
  Style/StringLiterals:
4
7
  EnforcedStyle: double_quotes
5
8
 
@@ -9,11 +9,6 @@
9
9
  Metrics/AbcSize:
10
10
  Max: 21
11
11
 
12
- # Offense count: 1
13
- # Configuration parameters: CountComments.
14
- Metrics/ClassLength:
15
- Max: 169
16
-
17
12
  # Offense count: 27
18
13
  # Configuration parameters: AllowURI, URISchemes.
19
14
  Metrics/LineLength:
@@ -1,3 +1,6 @@
1
+ ## 0.8.1
2
+ - Fix filters configurations (thx @imishinist)
3
+
1
4
  ## 0.8.0
2
5
  - Sanitize data-attributes
3
6
 
@@ -39,7 +39,7 @@ module Qiita
39
39
  # @note Modify filters if you want.
40
40
  # @return [Array<HTML::Pipeline::Filter>]
41
41
  def filters
42
- @filters ||= DEFAULT_FILTERS
42
+ @filters ||= DEFAULT_FILTERS.clone
43
43
  end
44
44
  end
45
45
  end
@@ -16,7 +16,7 @@ module Qiita
16
16
  # @note Modify filters if you want.
17
17
  # @return [Array<HTML::Pipeline::Filter>]
18
18
  def filters
19
- @filters ||= DEFAULT_FILTERS
19
+ @filters ||= DEFAULT_FILTERS.clone
20
20
  end
21
21
  end
22
22
  end
@@ -1,5 +1,5 @@
1
1
  module Qiita
2
2
  module Markdown
3
- VERSION = "0.8.0"
3
+ VERSION = "0.8.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qiita-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-19 00:00:00.000000000 Z
11
+ date: 2015-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport