limarka 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc3040d9fc772bc0298db49c24ecaa85d46a8da9
4
- data.tar.gz: 43d304ca6f762719f7a6eadd787653deea577aa2
3
+ metadata.gz: 1f5c8d6e063cbc9d7f52760587be0351f4a30f3c
4
+ data.tar.gz: 14225ea47724e97b9b0b813cf4fddacb0602c674
5
5
  SHA512:
6
- metadata.gz: 9a15f16a01ab47af0b81b4dabb1be08b52642e6c3e2318f9e862dbfcce57ad88223595cc08f4b94c6c1989e57cd25e94d430ac56992c58f28d894282f961f4af
7
- data.tar.gz: bcdbe4d4e9c08d9eff08b215932496da2091f92b5390ea4f3c057848a3c5e6c2396d9d52b4609647039f7eedfc78e14bad54db18961cf04dbafbb8ba98e1714d
6
+ metadata.gz: c52a27c4bc2372602ecee34db7a2ae07f7733fc7fd71a2426b87c5eeabf99c940478de4b4141bfdf2ad7143e60b5148312245c5ed7a43f6b22e3149c9a63f9cd
7
+ data.tar.gz: a4d3310ae690edc7fc19cef570b1a962d61b5134c5dfed60b691ea59b3d2597ce5ae67d0c81b18edffd0a36f2414816b33ae58b58f0d8d5f5d2868ae5646b44d
data/.travis.yml CHANGED
@@ -6,7 +6,7 @@ rvm:
6
6
  before_install:
7
7
  - sudo apt-get update -qq
8
8
  - sudo apt-get install -y -qq ruby-full pdftk xclip poppler-utils language-pack-pt libreoffice
9
- - wget https://github.com/jgm/pandoc/releases/download/1.19.1/pandoc-1.19.1-1-amd64.deb && sudo dpkg -i pandoc-1.19.1-1-amd64.deb
9
+ - wget https://github.com/jgm/pandoc/releases/download/1.19.2.1/pandoc-1.19.2.1-1-amd64.deb && sudo dpkg -i pandoc-*.deb
10
10
  - wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && tar -xf install-tl-unx.tar.gz && cd install-tl-* && sudo ./install-tl -no-gui -profile ../spec/dependencias/texlive-abntex2.profile -no-verify-downloads && cd ..
11
11
  - export PATH=$PATH:/usr/local/texlive/2016/bin/x86_64-linux
12
12
  script:
data/CHANGELOG.md CHANGED
@@ -1,11 +1,25 @@
1
1
  # Change Log
2
2
 
3
- ## [v0.6.7](https://github.com/abntex/limarka/tree/v0.6.7) (2017-01-31)
4
- [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.6...v0.6.7)
3
+ ## [v0.7.1](https://github.com/abntex/limarka/tree/v0.7.1) (2017-02-11)
4
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.7.0...v0.7.1)
5
+
6
+ **Melhorias implementadas:**
7
+
8
+ - Atualização do pandoc para versão 1.19.2 [\#130](https://github.com/abntex/limarka/issues/130)
9
+
10
+ ## [v0.7.0](https://github.com/abntex/limarka/tree/v0.7.0) (2017-02-11)
11
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.7...v0.7.0)
12
+
13
+ **Melhorias implementadas:**
14
+
15
+ - Criar filtro para inclusão de Fonte em figuras [\#127](https://github.com/abntex/limarka/issues/127)
5
16
 
6
17
  **Bugs corrigidos:**
7
18
 
8
- - Geração da folha de aprovação não apresenta o mês [\#128](https://github.com/abntex/limarka/issues/128)
19
+ - Folha de aprovação gerada não apresenta o mês [\#128](https://github.com/abntex/limarka/issues/128)
20
+
21
+ ## [v0.6.7](https://github.com/abntex/limarka/tree/v0.6.7) (2017-01-31)
22
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.6...v0.6.7)
9
23
 
10
24
  ## [v0.6.6](https://github.com/abntex/limarka/tree/v0.6.6) (2017-01-22)
11
25
  [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.5...v0.6.6)
@@ -174,7 +174,7 @@ module Limarka
174
174
 
175
175
  def textual(pretextual_tempfile, postextual_tempfile)
176
176
  valida_yaml
177
- Open3.popen3("pandoc -f markdown+raw_tex -t latex -s \"--data-dir=#{options[:templates_dir]}\" --template=trabalho-academico --normalize --chapter --include-before-body=#{pretextual_tempfile.path} --include-after-body=#{postextual_tempfile.path} --filter pandoc_abnt") {|stdin, stdout, stderr, wait_thr|
177
+ Open3.popen3("pandoc -f markdown+raw_tex -t latex -s \"--data-dir=#{options[:templates_dir]}\" --template=trabalho-academico --normalize --top-level-division=chapter --include-before-body=#{pretextual_tempfile.path} --include-after-body=#{postextual_tempfile.path} --filter pandoc_abnt") {|stdin, stdout, stderr, wait_thr|
178
178
  stdin.write(File.read(options[:templates_dir] + '/templates/configuracao-tecnica.yaml'))
179
179
  stdin.write("\n")
180
180
  stdin.write(hash_to_yaml(t.configuracao))
@@ -240,7 +240,7 @@ module Limarka
240
240
  def secao(template, condicao_para_conteudo, conteudo_externo)
241
241
  s = StringIO.new
242
242
 
243
- Open3.popen3("pandoc -f markdown \"--data-dir=#{options[:templates_dir]}\" --template=#{template} --chapter -t latex --filter pandoc_abnt") {|stdin, stdout, stderr, wait_thr|
243
+ Open3.popen3("pandoc -f markdown \"--data-dir=#{options[:templates_dir]}\" --template=#{template} --top-level-division=chapter -t latex --filter pandoc_abnt") {|stdin, stdout, stderr, wait_thr|
244
244
  stdin.write(hash_to_yaml(t.configuracao))
245
245
  stdin.write("\n")
246
246
  if (condicao_para_conteudo) then
@@ -1,3 +1,3 @@
1
1
  module Limarka
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: limarka
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo de Santana Medeiros Alexandre