limarka 0.5.2 → 0.5.3
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/CONTRIBUTING.md +1 -0
- data/README.md +2 -0
- data/lib/limarka/conversor.rb +1 -1
- data/lib/limarka/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c6b452c165d42ee22c9ed7c8a2e70eddc61273b
|
|
4
|
+
data.tar.gz: 90f9fda80a73204018966d38b342dfab53a6dce4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e8052be733b2d33be0b1d2c5c6e393e15bd978bb283d5a0818738abc59eca85395e6607a17b6c4e3c28a3595e55b79834b3ca6cf9a4102af6aedb112833d920
|
|
7
|
+
data.tar.gz: a5f7e96e1878b6c0788180f98854a8768522f058dc9f4358d986e8c5faf63951dd7f714276c314af104cf70dfc7688428be55c39f36be1c15bab1d07dcdc74f4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v0.5.3](https://github.com/abntex/limarka/tree/v0.5.3) (2016-12-19)
|
|
4
|
+
[Full Changelog](https://github.com/abntex/limarka/compare/v0.5.2...v0.5.3)
|
|
5
|
+
|
|
6
|
+
**Bugs corrigidos:**
|
|
7
|
+
|
|
8
|
+
- Corrigir saída dev/nul para funcionar no Windows [\#96](https://github.com/abntex/limarka/issues/96)
|
|
9
|
+
|
|
10
|
+
**Issues fechados:**
|
|
11
|
+
|
|
12
|
+
- Creating an Open Canvas for limarka [\#95](https://github.com/abntex/limarka/issues/95)
|
|
13
|
+
|
|
3
14
|
## [v0.5.2](https://github.com/abntex/limarka/tree/v0.5.2) (2016-12-09)
|
|
4
15
|
[Full Changelog](https://github.com/abntex/limarka/compare/v0.5.1...v0.5.2)
|
|
5
16
|
|
data/CONTRIBUTING.md
CHANGED
|
@@ -37,4 +37,5 @@ Se existir um Issue referente a funcionalidade implementada:
|
|
|
37
37
|
|
|
38
38
|
Faça um Push para o seu fork e [submeta um pull request][pr].
|
|
39
39
|
|
|
40
|
+
Você também pode participar do [fórum de discussão do limarka](https://groups.google.com/forum/#!forum/limarka).
|
|
40
41
|
[pr]: https://github.com/abntex/limarka/compare/
|
data/README.md
CHANGED
|
@@ -5,6 +5,8 @@ O limarka é uma ferramenta que possibilita o usuário escrever o seu trabalho d
|
|
|
5
5
|
- [Convite para realização de experimento de utilização](https://github.com/abntex/limarka/wiki/Experimentos)
|
|
6
6
|
- [Fórum de usuários no google groups](https://groups.google.com/forum/#!forum/limarka)
|
|
7
7
|
|
|
8
|
+
[](https://badge.fury.io/rb/limarka)
|
|
9
|
+
|
|
8
10
|
# Por que escrever em Markdown ao invés de Latex?
|
|
9
11
|
|
|
10
12
|
O LaTeX é ótimo e bastante útil para quem deseja percorrer uma carreira de Pesquisador. Muitos *journals* disponibilizam modelos somente em LaTeX para produção de artigos, aprender LaTeX irá ser útil nessa carreira.
|
data/lib/limarka/conversor.rb
CHANGED
|
@@ -52,7 +52,7 @@ module Limarka
|
|
|
52
52
|
def compila
|
|
53
53
|
Dir.chdir(options[:output_dir]) do
|
|
54
54
|
basename = File.basename(texto_tex_file, '.tex')
|
|
55
|
-
system "latexmk --quiet --xelatex -f #{basename}",
|
|
55
|
+
system "latexmk --quiet --xelatex -f #{basename}", :out=>File::NULL, :err=>File::NULL
|
|
56
56
|
system "pdftotext -enc UTF-8 #{basename}.pdf"
|
|
57
57
|
File.open("#{basename}.txt", 'r') {|f| @txt = f.read}
|
|
58
58
|
end
|
data/lib/limarka/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: limarka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo de Santana Medeiros Alexandre
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|