limarka 0.5.3 → 0.5.4
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/CHANGELOG.md +11 -0
- data/exe/limarka +4 -0
- data/lib/limarka/cli.rb +1 -0
- data/lib/limarka/conversor.rb +2 -0
- data/lib/limarka/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ecfae81797da21d424726b488a97614bffa7306
|
|
4
|
+
data.tar.gz: 9641d912fe482da30294233e4f1b1faf1dbfb757
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98420a476c7a5d17a92a1513b30e0df24a43dcfaaa31ea90f02e152d9160e5c06ad2f7d8b8fe1264cda0652d138db4b955e38b18862260f9ebe116cf707bff9b
|
|
7
|
+
data.tar.gz: a2506f67b8226970fa6a7a33016cf1d2e614004d0589b19bf0053664aeb0597f3556ae090c91674d76100083a40d7d3c978fc7afc531142f21e8ec08f8550e02
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v0.5.4](https://github.com/abntex/limarka/tree/v0.5.4) (2016-12-19)
|
|
4
|
+
[Full Changelog](https://github.com/abntex/limarka/compare/v0.5.3...v0.5.4)
|
|
5
|
+
|
|
6
|
+
**Melhorias implementadas:**
|
|
7
|
+
|
|
8
|
+
- Remover dependência de execução pdftotext [\#97](https://github.com/abntex/limarka/issues/97)
|
|
9
|
+
|
|
10
|
+
**Bugs corrigidos:**
|
|
11
|
+
|
|
12
|
+
- Problemas de codificação no Windows [\#98](https://github.com/abntex/limarka/issues/98)
|
|
13
|
+
|
|
3
14
|
## [v0.5.3](https://github.com/abntex/limarka/tree/v0.5.3) (2016-12-19)
|
|
4
15
|
[Full Changelog](https://github.com/abntex/limarka/compare/v0.5.2...v0.5.3)
|
|
5
16
|
|
data/exe/limarka
CHANGED
data/lib/limarka/cli.rb
CHANGED
data/lib/limarka/conversor.rb
CHANGED
|
@@ -18,10 +18,12 @@ module Limarka
|
|
|
18
18
|
attr_accessor :postextual_tex
|
|
19
19
|
attr_accessor :texto_tex
|
|
20
20
|
attr_accessor :txt
|
|
21
|
+
attr_accessor :usa_pdftotext
|
|
21
22
|
|
|
22
23
|
def initialize(trabalho, options)
|
|
23
24
|
self.t = trabalho
|
|
24
25
|
self.options = options
|
|
26
|
+
self.usa_pdftotext = true
|
|
25
27
|
end
|
|
26
28
|
|
|
27
29
|
|
data/lib/limarka/version.rb
CHANGED