qiita_marker 0.23.6.0 → 0.23.6.2

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: b0e45d2000570d0cdf3f3c74e8b3f49936438c4183b31ce632eedbedc8bd920d
4
- data.tar.gz: 3c732d6f5f94c5c575816a6866d61d1ca44e1557d320dda0215440a626064603
3
+ metadata.gz: 33ffa83efbb04e12670414e88754dd011545a84e3f33d8b6cd485e9cb93852d6
4
+ data.tar.gz: bc620d5b55aeb110636550b01a0bbe2a49c3e18ba1d8023086cdaab4cb1e4b68
5
5
  SHA512:
6
- metadata.gz: 150f04fca8e8a325b3d981b67ec12a95fd489aa3eb8b08c0b50e9ac2b21c8a9797ca5b6e6b8bd26f51fc215cc3f9121ce8167c2bc78d4d93ee7020cf72db3e00
7
- data.tar.gz: 439012adb32af3319165a4eeec5b19d796410b4aaddd84a0256684da172a1fc2dddf00d5175239cbbf3f9ac7d6020e8ef800afd32bdd8445b296750b0a14ffd7
6
+ metadata.gz: 33a5fc0e5676ae1669b16fefe6f6afff49b87fcc5276371ad5aeac833385df71e93413f39287109430de433fb3b874192a559a6783090f1b8d786ac115fd70b2
7
+ data.tar.gz: 7fd8db1b4369982a7206a4be403843dfc765893dacf9703a349719f379ff6cd547b1897799b4421cd7518a3f423dc03ada44636de86d0b7003cb55eadcc863ae
data/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  [![Build Status](https://github.com/increments/qiita-marker/actions/workflows/test.yml/badge.svg)](https://github.com/increments/qiita-marker/actions/workflows/test.yml) [![Gem Version](https://badge.fury.io/rb/qiita_marker.svg)](https://badge.fury.io/rb/qiita_marker)
4
4
 
5
- :warning: This library is still in the testing phase. As such, development may be halted.
6
-
7
5
  Qiita Marker is a Ruby library for Markdown processing, based on [CommonMarker](https://github.com/gjtorikian/commonmarker).
8
6
  It will be a core module of [Qiita Markdown](https://github.com/increments/qiita-markdown) gem and not intended for direct use. If you are looking for Qiita-specified markdown processor, use [Qiita Markdown](https://github.com/increments/qiita-markdown) gem.
9
7
 
@@ -16,11 +16,11 @@ module QiitaMarker
16
16
  printer.group(PP_INDENT_SIZE, "#<#{self.class}(#{type}):", ">") do
17
17
  printer.breakable
18
18
 
19
- attrs = [:sourcepos, :string_content, :url, :title, :header_level, :list_type, :list_start, :list_tight, :fence_info].map do |name|
19
+ attrs = [:sourcepos, :string_content, :url, :title, :header_level, :list_type, :list_start, :list_tight, :fence_info].filter_map do |name|
20
20
  [name, __send__(name)]
21
21
  rescue NodeError
22
22
  nil
23
- end.compact
23
+ end
24
24
 
25
25
  printer.seplist(attrs) do |name, value|
26
26
  printer.text("#{name}=")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QiitaMarker
4
- VERSION = "0.23.6.0"
4
+ VERSION = "0.23.6.2"
5
5
  end
data/qiita_marker.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.executables = ["qiita_marker"]
22
22
  s.require_paths = ["lib", "ext"]
23
- s.required_ruby_version = [">= 2.6", "< 4.0"]
23
+ s.required_ruby_version = [">= 2.7", "< 4.0"]
24
24
 
25
25
  s.metadata["rubygems_mfa_required"] = "true"
26
26
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qiita_marker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.6.0
4
+ version: 0.23.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Qiita Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-04 00:00:00.000000000 Z
11
+ date: 2022-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: awesome_print
@@ -252,7 +252,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
252
252
  requirements:
253
253
  - - ">="
254
254
  - !ruby/object:Gem::Version
255
- version: '2.6'
255
+ version: '2.7'
256
256
  - - "<"
257
257
  - !ruby/object:Gem::Version
258
258
  version: '4.0'