texqc 0.3.2 → 0.4.0

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: 0320a39681a88dd049a570f07f2f7da888a252031cbc837bbeabef8193a03914
4
- data.tar.gz: d8a66224bb2ea5f9a629affc4bb775bef198557bb062278b42941cc4a197d784
3
+ metadata.gz: 405302fd1be88ad8610cfeee7da0f9d8831fb4d9a71999de305f8b8d6e97bdb6
4
+ data.tar.gz: be31a5c158ea12d077250acc711ade0f0db1e869f28be98f1629589f994d9da4
5
5
  SHA512:
6
- metadata.gz: 346a1f0a696fab388789ecd93cb0a90e65fd89943bd8d74717019c64b368d7d51354f33665a846d1a62a16b3c85fdb08aed7f6baba0aa2694cb5a195e8cfd957
7
- data.tar.gz: 7ce08f94b5116f9ee571cae314258816aec8243f4ebe7ba8b246ad8d7dc024903aa2c8927a7f405f88c18e25d56948e70bacdaf70704076337a846e8690a8713
6
+ metadata.gz: 6ff868d523e54df9b0acbe75b00ccb529e874a8f6ca08084b65aa92c8b82d43170f0983bb2ec84dabf77c1e5724e78edc8fdfd0a0c4cef2f6e768a4204189988
7
+ data.tar.gz: f1dbc5fad72d0674486a6a244adac0c99b20ee35280544060dd1b3aa59bfc354565cfec31b54fe874c4c07a0ca30404829513983e8df229153618bd6aa1f7ab8
data/.simplecov CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2020 Yegor Bugayenko
1
+ # Copyright (c) 2020-2021 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2020 Yegor Bugayenko
3
+ # Copyright (c) 2020-2021 Yegor Bugayenko
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2020 Yegor Bugayenko
3
+ # Copyright (c) 2020-2021 Yegor Bugayenko
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/bin/texqc CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- # Copyright (c) 2020 Yegor Bugayenko
4
+ # Copyright (c) 2020-2021 Yegor Bugayenko
5
5
  #
6
6
  # Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  # of this software and associated documentation files (the 'Software'), to deal
@@ -21,7 +21,7 @@
21
21
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
22
  # SOFTWARE.
23
23
 
24
- VERSION = '0.3.2'
24
+ VERSION = '0.4.0'
25
25
 
26
26
  STDOUT.sync = true
27
27
 
@@ -79,6 +79,7 @@ Options are:"
79
79
  /^Underfull /,
80
80
  /^Overfull /,
81
81
  /^LaTeX Warning: /,
82
+ /^pdfTeX warning: /,
82
83
  /^Class [a-zA-Z0-9\*]+ Warning: /,
83
84
  /^Package [a-zA-Z0-9\*]+ Warning: /,
84
85
  /^LaTeX Font Warning: /
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2020 Yegor Bugayenko
3
+ # Copyright (c) 2020-2021 Yegor Bugayenko
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2020 Yegor Bugayenko
3
+ # Copyright (c) 2020-2021 Yegor Bugayenko
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/texqc.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2020 Yegor Bugayenko
3
+ # Copyright (c) 2020-2021 Yegor Bugayenko
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
32
32
  s.rubygems_version = '2.2'
33
33
  s.required_ruby_version = '>= 2.3'
34
34
  s.name = 'texqc'
35
- s.version = '0.3.2'
35
+ s.version = '0.4.0'
36
36
  s.license = 'MIT'
37
37
  s.summary = 'Quality Control of Your LaTeX Build'
38
38
  s.description = 'Run it after you compile your LaTeX document'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: texqc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-18 00:00:00.000000000 Z
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: backtrace