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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7aec22c987a60fa4b0691e44b9dfb594b1898a2f
4
- data.tar.gz: 8ea2a32df33031be81caedbe3ca884953f26607f
3
+ metadata.gz: 0c6b452c165d42ee22c9ed7c8a2e70eddc61273b
4
+ data.tar.gz: 90f9fda80a73204018966d38b342dfab53a6dce4
5
5
  SHA512:
6
- metadata.gz: c32cfa2c8d3cbb8a9edda4480ae53248845a32e2b74a59a69cc72bbd12b5deae5490c0268273b1afa130336dedface19da15c8d0c38b5c1d97f326be0383be07
7
- data.tar.gz: a52290e30da57872e03ede9abff9a05877e0f22cf2c144ef7d46f60acfd333b7c9d91bc6a0762551ba4c4a18b5dca6cb4f0946b0abfef0f78e02d9277e42871d
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
+ [![Gem Version](https://badge.fury.io/rb/limarka.svg)](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.
@@ -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}", :out=>"/dev/null", :err=>"/dev/null"
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
@@ -1,3 +1,3 @@
1
1
  module Limarka
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
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.2
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-09 00:00:00.000000000 Z
11
+ date: 2016-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler