texsc 0.5.0 → 0.5.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 +4 -4
- data/.simplecov +1 -1
- data/Gemfile +1 -1
- data/Rakefile +1 -1
- data/bin/texsc +8 -5
- data/features/step_definitions/steps.rb +1 -1
- data/features/support/env.rb +1 -1
- data/texsc.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c17175ccf4ff188118c169998a047fcffff963bba7bb6c0091e8009ab649765
|
|
4
|
+
data.tar.gz: 676f6c7eb559122c01aa94850f26341486ca3d69c171a23a8b79a987179919e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c63654aeaf9750b6b4084d112b0ccfd5c3460f679e8361027e2955d0c10a48c714bd8e3d177249fc5d14119697d5cea4544d551e3d5208d9589bfacf89841f2
|
|
7
|
+
data.tar.gz: b0714b11c3c1dcb4eff8463314c5bf195f373c034dba9600aa1a5c732cc30fcd1b3911970157d5c843d0d5cc67543502629f036c8d4b7861b18444b0fd036aae
|
data/.simplecov
CHANGED
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/texsc
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,13 +21,14 @@
|
|
|
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.5.
|
|
24
|
+
VERSION = '0.5.1'
|
|
25
25
|
|
|
26
26
|
STDOUT.sync = true
|
|
27
27
|
|
|
28
28
|
require 'backtrace'
|
|
29
29
|
require 'loog'
|
|
30
30
|
require 'open3'
|
|
31
|
+
require 'shellwords'
|
|
31
32
|
require 'slop'
|
|
32
33
|
|
|
33
34
|
begin
|
|
@@ -94,12 +95,14 @@ Options are:"
|
|
|
94
95
|
)
|
|
95
96
|
cmd = [
|
|
96
97
|
'aspell',
|
|
97
|
-
"--ignore=#{opts['min-word-length']}",
|
|
98
|
+
Shellwords.escape("--ignore=#{opts['min-word-length']}"),
|
|
98
99
|
'--dont-tex-check-comments',
|
|
99
100
|
'--lang=en',
|
|
100
101
|
'--mode=tex',
|
|
101
|
-
opts[:pws] ? "-p #{opts[:pws]}" : '',
|
|
102
|
-
ignores.map
|
|
102
|
+
opts[:pws] ? "-p #{Shellwords.escape(opts[:pws])}" : '',
|
|
103
|
+
ignores.map do |i|
|
|
104
|
+
"--add-tex-command '#{Shellwords.escape(i[:cmd])} #{Shellwords.escape(i[:opts])}'"
|
|
105
|
+
end.join(' '),
|
|
103
106
|
'pipe'
|
|
104
107
|
].join(' ')
|
|
105
108
|
log.debug(cmd)
|
|
@@ -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/features/support/env.rb
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/texsc.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 = 'texsc'
|
|
35
|
-
s.version = '0.5.
|
|
35
|
+
s.version = '0.5.1'
|
|
36
36
|
s.license = 'MIT'
|
|
37
37
|
s.summary = 'Spell Checker for LaTeX'
|
|
38
38
|
s.description = 'Simple command-line spell checker for LaTeX documents'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: texsc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yegor Bugayenko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: backtrace
|