mdextab 0.1.6 → 0.1.7

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: 30954db83b3ff5d42198eb363617f1dd143bc753f602410d9f2accf108636ac1
4
- data.tar.gz: 4482a475295a0d00705173c6bb1682486e3d74bfed580810362f6ab142080909
3
+ metadata.gz: e0c3bdaf2a838fe07f2f13719e10247efacdd4b2f8c8c7d979f3ff15a7555ba5
4
+ data.tar.gz: f2fe25f89d138b14788b938722fbbf935af25736e2151a9e38b1298a02b12add
5
5
  SHA512:
6
- metadata.gz: 16fa6d519c1570b4cf4243265601a4489eb6743827b7cd298c991d87b0b562416118439616550ff20cfcfad65cd9798840dba6cb1627dfb721473cc84aa70d26
7
- data.tar.gz: cb837801ecbcc40b90d2b0d37eba3059dbf675e14bb3eeb0eafedaf013f78c5a8c83eda1befd2bdff76e7577bf54f93c8e5be33bb02bc9f5110dc6765f62de4b
6
+ metadata.gz: 478f7514a812d9c07af1a36ecca542b226f826e3d83daba66f75ce6241382febd3764d9528422aef1618bc993545d613d5237d03fe3a56ae393ca5c9c9000b9b
7
+ data.tar.gz: 579e0c4e411c45eb36997a1a636a4b78250d87d3236b47130568180f339885517a3786c277e0b3f4b9c823948be9f9c508e841507b539f15fabbb0ac2a176bf7
data/.gitmodules CHANGED
File without changes
data/.rspec CHANGED
File without changes
data/.rubocop.yml CHANGED
@@ -7,6 +7,7 @@ AllCops:
7
7
  StyleGuideBaseURL: https://github.com/fortissimo1997/ruby-style-guide/blob/japanese/README.ja.md
8
8
  #
9
9
  Exclude:
10
+ - "Gemfile"
10
11
  - "Rakefile"
11
12
  - "*.gemspec"
12
13
  - "vendor/**/*"
data/.rubocop_todo.yml CHANGED
File without changes
data/.travis.yml CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/LICENSE.txt CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
data/lib/mdextab/layer.rb CHANGED
@@ -140,7 +140,7 @@ module Mdextab
140
140
  # @return [void]
141
141
  def process_table_end(token)
142
142
  prev_layer = peek_prev_layer
143
- retrun unless prev_layer
143
+ return unless prev_layer
144
144
 
145
145
  # 一つ前のレイヤーが存在すれば、入れ子のTABLE_ENDトークンとして処理する
146
146
  process_table_end_for_prev_env(token)
File without changes
data/lib/mdextab/table.rb CHANGED
File without changes
data/lib/mdextab/tbody.rb CHANGED
File without changes
data/lib/mdextab/td.rb CHANGED
File without changes
data/lib/mdextab/th.rb CHANGED
File without changes
data/lib/mdextab/token.rb CHANGED
@@ -143,7 +143,7 @@ module Mdextab
143
143
  cont = Regexp.last_match(2)
144
144
  ret = get_token_colon_start(line, lineno, nth, cont)
145
145
  when %r{^\s*</table}
146
- ret = get_token_end_table(line, lineno)
146
+ ret = get_token_table_end(line, lineno)
147
147
  when %r{^\s*</tbody}
148
148
  if %r{^\s*</tbody>\s*$}.match?(line)
149
149
  ret = create_token(:TBODY_END, { lineno: lineno })
data/lib/mdextab/tr.rb CHANGED
File without changes
@@ -1,4 +1,4 @@
1
1
  module Mdextab
2
2
  # バージョン番号
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
data/lib/mdextab.rb CHANGED
File without changes
data/mdextab.gemspec CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mdextab
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - yasuo kominami
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-06-01 00:00:00.000000000 Z
11
+ date: 2019-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler