limarka 19.5.pre.262 → 19.5.pre.264

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
  SHA256:
3
- metadata.gz: e1aee7ef154e599080565611bb91ecf63c520046878c7b0e1cb9a8e963da8dd2
4
- data.tar.gz: e9d08b570acb633d8332b04841b5ff33b71dc851aac6b9394fa6668935167fa1
3
+ metadata.gz: 7a0fc8d411beeb66ba20cf7b4fe7250b427760b4aabe883edd0c413e6f239c5a
4
+ data.tar.gz: b97b32bcd452ca022bc6cbd23e17542543327b9589a762810c5b2eba45eae674
5
5
  SHA512:
6
- metadata.gz: bafa25d0e8ee0b27afc472d761c8a52d6a8a7424b6546c7948cafa74267f4d572412f2568c8b1f8cec2af492a1e076197b9a5708e61962dcaa5bd84c9a12d3f5
7
- data.tar.gz: 58e8b4e8d35b367158a482d2b91e17842ac5b38b42224bd44e6bca98008c28d9ce82071f6c295b026993cc298ada99a83dab9030fff02d6f4fbf392b4db47f33
6
+ metadata.gz: 637a516013763454eb495cf5c4970a5cf8642a20999b7d51eeedec5281bb951dd1de863c7ff24efaa7741433c80e4479d2abe7bb1dc14370c84f55bd23ec6aee
7
+ data.tar.gz: de8fe35dd3df23fa91763126f8659c84f1feb502ae82993025668949a9bbae990e8a59228ed7833b6f2faa1b091414cf64935ae9cb1a71b7a2affa1aed8fc338
data/.travis.yml CHANGED
@@ -3,7 +3,10 @@ sudo: required
3
3
  language: ruby
4
4
  services:
5
5
  - docker
6
- cache: bundle
6
+ cache:
7
+ directories:
8
+ - .TinyTeX
9
+ - bin
7
10
  before_install:
8
11
  - sudo apt-get update -qq
9
12
  - sudo apt-get install -y -qq
@@ -18,28 +21,16 @@ before_install:
18
21
  xclip
19
22
  - wget https://github.com/jgm/pandoc/releases/download/2.7.2/pandoc-2.7.2-1-amd64.deb
20
23
  && sudo dpkg -i pandoc-*.deb
21
- - wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh
22
- - tlmgr install
23
- abntex2
24
- babel-portuges
25
- enumitem
26
- ifetex
27
- lastpage
28
- lipsum
29
- listings
30
- memoir
31
- microtype
32
- pdfpages
33
- textcase
34
- xcolor
35
24
  - export PATH=$PATH:~/bin
25
+ - if ! which tlmgr > /dev/null; then bin/install-latex.sh; fi
26
+ before_script:
27
+ - latexmk -v
28
+ - xelatex -v
29
+ - pdftotext -v
30
+ - pandoc -v
31
+ - docker --version
32
+ - libreoffice --version
36
33
  script:
37
- - latexmk -v
38
- - xelatex -v
39
- - pdftotext -v
40
- - pandoc -v
41
- - docker --version
42
- - libreoffice --version
43
34
  - bundle exec rspec -t @latex_minimo
44
35
  - bundle exec rake
45
36
  - bundle exec rake spec:latex
data/Gemfile CHANGED
@@ -1,6 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in limarka.gemspec
4
- gem 'github_changelog_generator', :require => false, :git => 'https://github.com/github-changelog-generator/github-changelog-generator'
5
-
6
3
  gemspec
data/Rakefile CHANGED
@@ -7,8 +7,6 @@ require 'open3'
7
7
  require 'yaml'
8
8
  require 'rake/clean'
9
9
  require 'pdf_forms'
10
- require 'github_changelog_generator/task'
11
-
12
10
 
13
11
  desc 'Executa os testes ruby'
14
12
  RSpec::Core::RakeTask.new('spec') do |t|
@@ -22,18 +20,6 @@ end
22
20
 
23
21
  task :default => [:configuracao_padrao, 'spec']
24
22
 
25
- GitHubChangelogGenerator::RakeTask.new :changelog do |c|
26
- c.future_release = "v"+Limarka::VERSION
27
- c.header = "# Changelog\n\nTodas as mudanças relevantes deste projeto serão documentadas neste arquivo.\n"
28
- c.bug_prefix="**Bugs corrigidos:**"
29
- c.issue_prefix = "**Issues fechados:**"
30
- c.enhancement_prefix="**Melhorias implementadas:**"
31
- c.since_tag="0.2.0"
32
- c.user="abntex"
33
- c.project="limarka"
34
- end
35
-
36
-
37
23
  # http://stackoverflow.com/questions/19841865/ruby-gem-to-extract-form-data-from-fillable-pdf
38
24
  # https://github.com/jkraemer/pdf-forms/blob/master/test/pdf_test.rb
39
25
 
data/bin/build-docker.sh CHANGED
@@ -1,4 +1,5 @@
1
1
  # $1: limarka version
2
2
  echo "Gerando imagem do limarka..."
3
- docker build -t limarka -f containers/Dockerfile-ruby-tinytex.production .
3
+ docker build -t ruby-latex-pandoc - < containers/ruby-latex-pandoc.dockerfile
4
+ docker build -t limarka - < containers/limarka.dockerfile
4
5
  docker images
data/bin/deploy-docker.sh CHANGED
@@ -1,6 +1,4 @@
1
- # $1: comando valor
2
- # v1.2.3
3
- # dev
1
+ # $1: TAG
4
2
  # http://codewiki.wikidot.com/shell-script:if-else
5
3
  if [ -n "$1" ]
6
4
  then
@@ -8,19 +6,30 @@ then
8
6
  # https://semver.org/lang/pt-BR/
9
7
  ANO=`echo $1|cut -f 1 -d '.'`
10
8
  MES=`echo $1|cut -f 2 -d '.'`
11
- tags="limarka/limarka limarka/limarka:$ANO limarka/limarka:$ANO.$MES"
9
+ rtptags="limarka/ruby-latex-pandoc limarka/ruby-latex-pandoc:$ANO limarka/ruby-latex-pandoc:$ANO.$MES"
10
+ ltags="limarka/limarka limarka/limarka:$ANO limarka/limarka:$ANO.$MES"
12
11
  else
13
- tags="limarka/limarka:dev"
12
+ rtptags="limarka/ruby-latex-pandoc:dev"
13
+ ltags="limarka/limarka:dev"
14
14
  fi
15
15
 
16
- echo "Aplicando tags: $tags..."
17
- for tag in $tags
16
+ echo "Aplicando tags..."
17
+ for tag in $rtptags
18
+ do
19
+ docker tag ruby-latex-pandoc "$tag"
20
+ done
21
+ for tag in $ltags
18
22
  do
19
23
  docker tag limarka "$tag"
20
24
  done
25
+
26
+ echo "Publicando tags..."
21
27
  echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
22
- for tag in $tags
28
+ for tag in $rtptags
29
+ do
30
+ docker push "$tag"
31
+ done
32
+ for tag in $ltags
23
33
  do
24
34
  docker push "$tag"
25
- echo Imagem docker publicada
26
35
  done
@@ -0,0 +1,23 @@
1
+
2
+ # Instalação do TinyTeX
3
+ wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh
4
+
5
+ # Instalação dos demais pacotes utilizados pelo Limarka e abntex2
6
+ tlmgr install abntex2 \
7
+ babel-portuges \
8
+ enumitem \
9
+ ifetex \
10
+ lastpage \
11
+ lipsum \
12
+ listings \
13
+ memoir \
14
+ microtype \
15
+ pdfpages \
16
+ textcase \
17
+ xcolor
18
+
19
+ # Sobre cache:
20
+ # https://tex.stackexchange.com/questions/398830/how-to-build-my-latex-automatically-using-travis-ci
21
+
22
+ # Keep no backups (not required)
23
+ tlmgr option -- autobackup 0
@@ -0,0 +1,16 @@
1
+ # Changelog Header -------------------------------------------------
2
+
3
+ header_textfile: changelogs/header.txt
4
+ default_changelog_filename: CHANGELOG.md
5
+
6
+ # Tag formatting ---------------------------------------------------
7
+
8
+ version_prefix: ""
9
+ version_suffix: ""
10
+ date_prefix: ""
11
+
12
+ # Date formatting --------------------------------------------------
13
+
14
+ show_date: true
15
+ date_input_format: "%Y-%m-%d"
16
+ date_output_format: "%Y-%m-%d"
@@ -0,0 +1,2 @@
1
+ Todas as mudanças relevantes deste projeto serão documentadas neste arquivo.
2
+ O formato é baseado em [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
File without changes
@@ -0,0 +1,324 @@
1
+ <!-- Old changelog starts here -->
2
+
3
+ ## [v1.1.0](https://github.com/abntex/limarka/tree/v1.1.0) (2019-06-04)
4
+ [Full Changelog](https://github.com/abntex/limarka/compare/v1.0.2...v1.1.0)
5
+
6
+ **Melhorias implementadas:**
7
+
8
+ - Atualização de testes e dependencias [\#187](https://github.com/abntex/limarka/issues/187)
9
+ - Criar capas personalizadas a partir de arquivos pdf [\#185](https://github.com/abntex/limarka/issues/185)
10
+ - Gerar listas de quadros independente através de configuração [\#181](https://github.com/abntex/limarka/issues/181)
11
+ - Deploy de imagens docker diferenciadas para TAG e desenvolvimento [\#176](https://github.com/abntex/limarka/issues/176)
12
+ - Distriuir o limarka através do docker com tinytex [\#172](https://github.com/abntex/limarka/issues/172)
13
+
14
+ ## [v1.0.2](https://github.com/abntex/limarka/tree/v1.0.2) (2019-01-17)
15
+ [Full Changelog](https://github.com/abntex/limarka/compare/v1.0.1...v1.0.2)
16
+
17
+ **Melhorias implementadas:**
18
+
19
+ - Utilizar o tinytex nos testes automatizados [\#164](https://github.com/abntex/limarka/issues/164)
20
+
21
+ **Issues fechados:**
22
+
23
+ - Atualizar documentação sobre o pacote pdftk no Ubuntu 18.04 [\#168](https://github.com/abntex/limarka/issues/168)
24
+ - Atualizar documentação sobre dependências de compilação no Ubuntu 17.10.1 [\#160](https://github.com/abntex/limarka/issues/160)
25
+ - Sumário da versão v1.0.2 [\#171](https://github.com/abntex/limarka/issues/171)
26
+ - Atualizar documentação sobre o TinyTex [\#170](https://github.com/abntex/limarka/issues/170)
27
+
28
+ ## [v1.0.1](https://github.com/abntex/limarka/tree/v1.0.1) (2018-10-22)
29
+ [Full Changelog](https://github.com/abntex/limarka/compare/v1.0.0...v1.0.1)
30
+
31
+ **Bugs corrigidos:**
32
+
33
+ - Limarka ainda informava que a versão 2.X era incompatível [\#167](https://github.com/abntex/limarka/issues/167)
34
+
35
+ ## [v1.0.0](https://github.com/abntex/limarka/tree/v1.0.0) (2018-10-22)
36
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.8.0...v1.0.0)
37
+
38
+ **Melhorias implementadas:**
39
+
40
+ - Tornar o limarka compatível com o pandoc 2.0 [\#159](https://github.com/abntex/limarka/issues/159)
41
+
42
+ ## [v0.8.0](https://github.com/abntex/limarka/tree/v0.8.0) (2018-10-20)
43
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.7.2...v0.8.0)
44
+
45
+ **Melhorias implementadas:**
46
+
47
+ - Possibilita checar e notificar problemas de dependências no sistema [\#165](https://github.com/abntex/limarka/issues/165)
48
+ - limarka --version inclui versões das dependências [\#149](https://github.com/abntex/limarka/issues/149)
49
+ - Limarka dependende de guard-shell possibilitando geração automática [\#141](https://github.com/abntex/limarka/issues/141)
50
+ - Template extraído para submódulo modelo-oficial [\#79](https://github.com/abntex/limarka/issues/79)
51
+
52
+ **Issues fechados:**
53
+
54
+ - Distribuição do limarka através de imagem Docker [\#155](https://github.com/abntex/limarka/issues/155)
55
+
56
+ ## [v0.7.2](https://github.com/abntex/limarka/tree/v0.7.2) (2017-04-09)
57
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.7.1...v0.7.2)
58
+
59
+ **Melhorias implementadas:**
60
+
61
+ - Possibilitar escrita de capítulos sem numeração [\#142](https://github.com/abntex/limarka/issues/142)
62
+ - Exibir mensagem indicando a versão requerida do pandoc após instalação [\#138](https://github.com/abntex/limarka/issues/138)
63
+
64
+ **Bugs corrigidos:**
65
+
66
+ - Problema ao executar filtro pandoc\_abnt no Windows [\#143](https://github.com/abntex/limarka/issues/143)
67
+ - Identação na lista de siglas [\#139](https://github.com/abntex/limarka/issues/139)
68
+
69
+ ## [v0.7.1](https://github.com/abntex/limarka/tree/v0.7.1) (2017-02-11)
70
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.7.0...v0.7.1)
71
+
72
+ **Melhorias implementadas:**
73
+
74
+ - Atualização do pandoc para versão 1.19.2 [\#130](https://github.com/abntex/limarka/issues/130)
75
+
76
+ ## [v0.7.0](https://github.com/abntex/limarka/tree/v0.7.0) (2017-02-11)
77
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.7...v0.7.0)
78
+
79
+ **Melhorias implementadas:**
80
+
81
+ - Criar filtro para inclusão de Fonte em figuras [\#127](https://github.com/abntex/limarka/issues/127)
82
+
83
+ **Bugs corrigidos:**
84
+
85
+ - Folha de aprovação gerada não apresenta o mês [\#128](https://github.com/abntex/limarka/issues/128)
86
+
87
+ ## [v0.6.7](https://github.com/abntex/limarka/tree/v0.6.7) (2017-01-31)
88
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.6...v0.6.7)
89
+
90
+ ## [v0.6.6](https://github.com/abntex/limarka/tree/v0.6.6) (2017-01-22)
91
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.5...v0.6.6)
92
+
93
+ **Bugs corrigidos:**
94
+
95
+ - Erro ao ler campos multi-linhas de configuração salva com o PDF-XChange Viewer [\#124](https://github.com/abntex/limarka/issues/124)
96
+ - Erro nas referências quando title está entre duplas chaves e contem subtítulo [\#122](https://github.com/abntex/limarka/issues/122)
97
+
98
+ ## [v0.6.5](https://github.com/abntex/limarka/tree/v0.6.5) (2017-01-16)
99
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.4...v0.6.5)
100
+
101
+ **Melhorias implementadas:**
102
+
103
+ - Documentação da API [\#121](https://github.com/abntex/limarka/issues/121)
104
+
105
+ ## [v0.6.4](https://github.com/abntex/limarka/tree/v0.6.4) (2017-01-16)
106
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.3...v0.6.4)
107
+
108
+ ## [v0.6.3](https://github.com/abntex/limarka/tree/v0.6.3) (2017-01-15)
109
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.2...v0.6.3)
110
+
111
+ **Melhorias implementadas:**
112
+
113
+ - Fazer os testes Latex passarem no travis [\#113](https://github.com/abntex/limarka/issues/113)
114
+ - Tornar a ajuda \(o wiki\) acessível off-line [\#105](https://github.com/abntex/limarka/issues/105)
115
+ - Melhorias de navegação no Wiki [\#101](https://github.com/abntex/limarka/issues/101)
116
+
117
+ **Bugs corrigidos:**
118
+
119
+ - Erro quando há espaço no path do diretório no Windows [\#117](https://github.com/abntex/limarka/issues/117)
120
+
121
+ **Issues fechados:**
122
+
123
+ - Comunicar a equipe do abntex sobre o lançamento do limarka [\#66](https://github.com/abntex/limarka/issues/66)
124
+ - Apresentar a ferramenta utilizando gif animados [\#114](https://github.com/abntex/limarka/issues/114)
125
+ - Write a better CONTRIBUTING and README [\#99](https://github.com/abntex/limarka/issues/99)
126
+ - Software paper writing [\#94](https://github.com/abntex/limarka/issues/94)
127
+ - Several actions related to the software paper [\#93](https://github.com/abntex/limarka/issues/93)
128
+
129
+ ## [v0.6.2](https://github.com/abntex/limarka/tree/v0.6.2) (2017-01-09)
130
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.1...v0.6.2)
131
+
132
+ **Bugs corrigidos:**
133
+
134
+ - Falta do gem ffi causa problema no Windows [\#115](https://github.com/abntex/limarka/issues/115)
135
+
136
+ **Issues fechados:**
137
+
138
+ - Updating version software of the paper [\#120](https://github.com/abntex/limarka/issues/120)
139
+
140
+ ## [v0.6.1](https://github.com/abntex/limarka/tree/v0.6.1) (2017-01-08)
141
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.6.0...v0.6.1)
142
+
143
+ **Melhorias implementadas:**
144
+
145
+ - Deployment de imagens docker a partir do travis [\#111](https://github.com/abntex/limarka/issues/111)
146
+ - Utilizar sistema de integração contínua [\#108](https://github.com/abntex/limarka/issues/108)
147
+
148
+ **Bugs corrigidos:**
149
+
150
+ - O build no servidor de integração contínua está falhando [\#109](https://github.com/abntex/limarka/issues/109)
151
+
152
+ **Issues fechados:**
153
+
154
+ - Sala no gitter será o meio oficial de comunicação [\#112](https://github.com/abntex/limarka/issues/112)
155
+ - Inclusão de badges no README [\#106](https://github.com/abntex/limarka/issues/106)
156
+
157
+ ## [v0.6.0](https://github.com/abntex/limarka/tree/v0.6.0) (2016-12-27)
158
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.5.5...v0.6.0)
159
+
160
+ **Melhorias implementadas:**
161
+
162
+ - Criação de um logo para o projeto [\#102](https://github.com/abntex/limarka/issues/102)
163
+ - Inclusão de menu interativo [\#100](https://github.com/abntex/limarka/issues/100)
164
+
165
+ ## [v0.5.5](https://github.com/abntex/limarka/tree/v0.5.5) (2016-12-19)
166
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.5.4...v0.5.5)
167
+
168
+ **Melhorias implementadas:**
169
+
170
+ - Remover dependência de execução pdftotext [\#97](https://github.com/abntex/limarka/issues/97)
171
+ - Tornar compatível com o Windows [\#87](https://github.com/abntex/limarka/issues/87)
172
+
173
+ ## [v0.5.4](https://github.com/abntex/limarka/tree/v0.5.4) (2016-12-19)
174
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.5.3...v0.5.4)
175
+
176
+ **Bugs corrigidos:**
177
+
178
+ - Problemas de codificação no Windows [\#98](https://github.com/abntex/limarka/issues/98)
179
+
180
+ ## [v0.5.3](https://github.com/abntex/limarka/tree/v0.5.3) (2016-12-19)
181
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.5.2...v0.5.3)
182
+
183
+ **Bugs corrigidos:**
184
+
185
+ - Corrigir saída dev/nul para funcionar no Windows [\#96](https://github.com/abntex/limarka/issues/96)
186
+
187
+ **Issues fechados:**
188
+
189
+ - Creating an Open Canvas for limarka [\#95](https://github.com/abntex/limarka/issues/95)
190
+
191
+ ## [v0.5.2](https://github.com/abntex/limarka/tree/v0.5.2) (2016-12-09)
192
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.5.1...v0.5.2)
193
+
194
+ **Melhorias implementadas:**
195
+
196
+ - Inclusão de instruções de como colaborar com o projeto [\#86](https://github.com/abntex/limarka/issues/86)
197
+
198
+ **Issues fechados:**
199
+
200
+ - Alteração de configurações nos repositórios do projeto no github [\#85](https://github.com/abntex/limarka/issues/85)
201
+
202
+ ## [v0.5.1](https://github.com/abntex/limarka/tree/v0.5.1) (2016-12-05)
203
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.5.0...v0.5.1)
204
+
205
+ **Bugs corrigidos:**
206
+
207
+ - Correção da legenda da tabela [\#91](https://github.com/abntex/limarka/issues/91)
208
+
209
+ ## [v0.5.0](https://github.com/abntex/limarka/tree/v0.5.0) (2016-12-05)
210
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.6...v0.5.0)
211
+
212
+ **Melhorias implementadas:**
213
+
214
+ - Comando para auxiliar elaboração de cronogramas [\#90](https://github.com/abntex/limarka/issues/90)
215
+ - Possibilita utilizações de arquivos de rascunho [\#82](https://github.com/abntex/limarka/issues/82)
216
+
217
+ ## [v0.4.6](https://github.com/abntex/limarka/tree/v0.4.6) (2016-11-28)
218
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.5...v0.4.6)
219
+
220
+ **Melhorias implementadas:**
221
+
222
+ - Antecipar validação de dados quando inserindo figuras [\#78](https://github.com/abntex/limarka/issues/78)
223
+
224
+ **Bugs corrigidos:**
225
+
226
+ - Apresentação do número da página [\#71](https://github.com/abntex/limarka/issues/71)
227
+
228
+ ## [v0.4.5](https://github.com/abntex/limarka/tree/v0.4.5) (2016-11-20)
229
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.4...v0.4.5)
230
+
231
+ **Melhorias implementadas:**
232
+
233
+ - Geração do CHANGELOG com termos em português [\#77](https://github.com/abntex/limarka/issues/77)
234
+
235
+ **Bugs corrigidos:**
236
+
237
+ - Inconsistência ao adicionar referencia do clipboard [\#76](https://github.com/abntex/limarka/issues/76)
238
+ - Comando fig não apresenta a legenda apropriada no modo interativo [\#74](https://github.com/abntex/limarka/issues/74)
239
+
240
+ **Issues fechados:**
241
+
242
+ - Apresentação de funcionalidades no README [\#75](https://github.com/abntex/limarka/issues/75)
243
+
244
+ ## [v0.4.4](https://github.com/abntex/limarka/tree/v0.4.4) (2016-11-18)
245
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.3...v0.4.4)
246
+
247
+ **Bugs corrigidos:**
248
+
249
+ - Correção no comentário de inserir figura [\#73](https://github.com/abntex/limarka/issues/73)
250
+
251
+ ## [v0.4.3](https://github.com/abntex/limarka/tree/v0.4.3) (2016-11-18)
252
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.2...v0.4.3)
253
+
254
+ **Melhorias implementadas:**
255
+
256
+ - Sugere número de página para citações diretas [\#72](https://github.com/abntex/limarka/issues/72)
257
+
258
+ **Issues fechados:**
259
+
260
+ - Implementar mecanismo de ajuda [\#25](https://github.com/abntex/limarka/issues/25)
261
+ - Tarefa rake para geração de releases [\#22](https://github.com/abntex/limarka/issues/22)
262
+
263
+ ## [v0.4.2](https://github.com/abntex/limarka/tree/v0.4.2) (2016-11-18)
264
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.1...v0.4.2)
265
+
266
+ **Melhorias implementadas:**
267
+
268
+ - Opção de criar tabelas [\#37](https://github.com/abntex/limarka/issues/37)
269
+
270
+ ## [v0.4.1](https://github.com/abntex/limarka/tree/v0.4.1) (2016-11-17)
271
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.4.0...v0.4.1)
272
+
273
+ **Issues fechados:**
274
+
275
+ - Possibilitar incluir referência bibtex da área de transferência [\#69](https://github.com/abntex/limarka/issues/69)
276
+
277
+ ## [v0.4.0](https://github.com/abntex/limarka/tree/v0.4.0) (2016-11-16)
278
+ [Full Changelog](https://github.com/abntex/limarka/compare/v0.3.0...v0.4.0)
279
+
280
+ **Melhorias implementadas:**
281
+
282
+ - Indicar a versão de utilização do limarka [\#64](https://github.com/abntex/limarka/issues/64)
283
+ - Aumentar o provisionamento de inclusão de Figura [\#39](https://github.com/abntex/limarka/issues/39)
284
+
285
+ ## [v0.3.0](https://github.com/abntex/limarka/tree/v0.3.0) (2016-11-02)
286
+ [Full Changelog](https://github.com/abntex/limarka/compare/0.2.0...v0.3.0)
287
+
288
+ **Bugs corrigidos:**
289
+
290
+ - Correção do Sumário quando a lista de siglas está vazia [\#20](https://github.com/abntex/limarka/issues/20)
291
+
292
+ **Issues fechados:**
293
+
294
+ - Atualizando documentação no Wiki [\#65](https://github.com/abntex/limarka/issues/65)
295
+ - Inclusão de simbolos [\#62](https://github.com/abntex/limarka/issues/62)
296
+ - Emite mensagem de erro se não encontrar arquivo configuracao.yaml [\#61](https://github.com/abntex/limarka/issues/61)
297
+ - Remoção de comandos antigos [\#60](https://github.com/abntex/limarka/issues/60)
298
+ - Remoção do parâmetro de configuração técnica [\#59](https://github.com/abntex/limarka/issues/59)
299
+ - Seleção do sistema de referências: Numérico vs Alfabético [\#57](https://github.com/abntex/limarka/issues/57)
300
+ - Testes automatizados do template [\#56](https://github.com/abntex/limarka/issues/56)
301
+ - Seleção da Lista de tabelas [\#55](https://github.com/abntex/limarka/issues/55)
302
+ - Seleção da Lista de ilustrações [\#54](https://github.com/abntex/limarka/issues/54)
303
+ - Operação exec permite verbosidade [\#53](https://github.com/abntex/limarka/issues/53)
304
+ - Seleção da Folha de aprovação [\#52](https://github.com/abntex/limarka/issues/52)
305
+ - Permite exportar configuração para YAML [\#51](https://github.com/abntex/limarka/issues/51)
306
+ - Permite importar texto do word [\#50](https://github.com/abntex/limarka/issues/50)
307
+ - Arquivo de saída depende do nível de educação configurado [\#49](https://github.com/abntex/limarka/issues/49)
308
+ - Texto do propóstio do trabalho personalizável [\#48](https://github.com/abntex/limarka/issues/48)
309
+ - Adição dos campos Área de concentração e Linha de pesquisa [\#47](https://github.com/abntex/limarka/issues/47)
310
+ - Templates baseados exclusivamente no abnTeX2 [\#46](https://github.com/abntex/limarka/issues/46)
311
+ - Referências só serão possíveis com arquivo bibtex [\#43](https://github.com/abntex/limarka/issues/43)
312
+ - Atualização de dependência pdf-forms [\#42](https://github.com/abntex/limarka/issues/42)
313
+ - Se title de referência possui ":" cria um subtitle [\#41](https://github.com/abntex/limarka/issues/41)
314
+ - Possibilitar configurar o caminho do arquivo de referências biblatex [\#40](https://github.com/abntex/limarka/issues/40)
315
+ - Apresentar mensagem de erro amigável quando executada fora do diretório do projeto [\#38](https://github.com/abntex/limarka/issues/38)
316
+ - Seleção do tipo de Referências abortado [\#36](https://github.com/abntex/limarka/issues/36)
317
+ - Título das figuras na parte superior [\#35](https://github.com/abntex/limarka/issues/35)
318
+ - Configuração de proposta ou projeto [\#33](https://github.com/abntex/limarka/issues/33)
319
+ - Tornar o projeto atrativo a desenvolvedores [\#31](https://github.com/abntex/limarka/issues/31)
320
+ - Organizar documentação do projeto [\#21](https://github.com/abntex/limarka/issues/21)
321
+
322
+
323
+
324
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -0,0 +1,20 @@
1
+ "Melhorias implementadas":
2
+ - Nova funcionalidade implementada
3
+
4
+ "Mudanças":
5
+ - Novo comportamento
6
+
7
+ "Deprecated":
8
+ - Funcionalidades que serão removidas em breve
9
+
10
+ "Removido":
11
+ - Funcionalidades que serão removidas
12
+
13
+ "Correções":
14
+ - Alterações em código com erro
15
+
16
+ "Segurança":
17
+ - Mudanças que corrigem vulnerabilidade
18
+
19
+ "Deploy notes":
20
+ - Mudanças que impactam no processo de implantação
File without changes
@@ -0,0 +1,2 @@
1
+ "Mudanças":
2
+ - "Gestão do changelog passou ser feito com o codelog - [\\#191](https://github.com/abntex/limarka/issues/191)"
@@ -0,0 +1,5 @@
1
+ "Mudanças":
2
+ - >
3
+ Novas imagens do docker passaram a ser geradas no processo de build.
4
+ Imagens de desenvolvimento: `limarka/ruby-latex-pandoc:dev` e `limarka/limarka:dev`
5
+ Imagens de release: `limarka/limarka`, `limarka/limarka:ANO` e `limarka/limarka:ANO.MES`
@@ -0,0 +1,9 @@
1
+ FROM ruby-latex-pandoc
2
+
3
+ RUN gem install limarka
4
+
5
+ VOLUME ["/trabalho"]
6
+ WORKDIR /trabalho
7
+
8
+ CMD ["--help"]
9
+ ENTRYPOINT ["/usr/local/bundle/bin/limarka"]
@@ -15,8 +15,6 @@ RUN apt-get update && apt-get install -y -qq \
15
15
  unzip \
16
16
  wget
17
17
 
18
- RUN gem install limarka guard guard-shell
19
-
20
18
  # Instala tinytex (/root/.TinyTex)
21
19
  RUN wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh
22
20
  ENV PATH="/root/bin:${PATH}"
@@ -24,19 +22,13 @@ ENV PATH="/root/bin:${PATH}"
24
22
  # instala bibliotecas para o abntex2/limarka
25
23
  RUN tlmgr install memoir abntex2 lastpage microtype lipsum pdfpages ifetex textcase enumitem xcolor babel-portuges listings
26
24
 
27
- # Instala o pandoc
28
- WORKDIR /tmp
29
- RUN wget https://github.com/jgm/pandoc/releases/download/2.7.2/pandoc-2.7.2-1-amd64.deb \
30
- && dpkg -i pandoc-*.deb \
31
- && rm pandoc-*.deb
32
-
33
25
  # Configurando o idioma português #175: https://hub.docker.com/_/debian/#locales
34
26
  RUN rm -rf /var/lib/apt/lists/* \
35
27
  && localedef -i pt_BR -c -f UTF-8 -A /usr/share/locale/locale.alias pt_BR.UTF-8
36
28
  ENV LANG pt_BR.UTF8
37
29
 
38
- VOLUME ["/trabalho"]
39
- WORKDIR /trabalho
40
-
41
- CMD ["--help"]
42
- ENTRYPOINT ["/usr/local/bundle/bin/limarka"]
30
+ # Instala o pandoc
31
+ WORKDIR /tmp
32
+ RUN wget https://github.com/jgm/pandoc/releases/download/2.7.3/pandoc-2.7.3-1-amd64.deb \
33
+ && dpkg -i pandoc-*.deb \
34
+ && rm pandoc-*.deb
data/limarka.gemspec CHANGED
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.add_development_dependency "rake", "~> 12.0"
34
34
  spec.add_development_dependency "rspec", "~> 3.8"
35
35
  spec.add_development_dependency "pry-byebug"
36
- spec.add_development_dependency "github_changelog_generator"
36
+ spec.add_development_dependency "codelog"
37
37
 
38
38
  spec.add_dependency "clipboard"
39
39
  spec.add_dependency "ffi"
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: 19.5.pre.262
4
+ version: 19.5.pre.264
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: 2019-06-19 00:00:00.000000000 Z
11
+ date: 2019-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -67,7 +67,7 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: github_changelog_generator
70
+ name: codelog
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
@@ -258,9 +258,19 @@ files:
258
258
  - bin/build-docker.sh
259
259
  - bin/console
260
260
  - bin/deploy-docker.sh
261
+ - bin/install-latex.sh
261
262
  - bin/setup
262
263
  - bin/test
263
- - containers/Dockerfile-ruby-tinytex.production
264
+ - changelogs/codelog.yml
265
+ - changelogs/header.txt
266
+ - changelogs/releases/.gitkeep
267
+ - changelogs/releases/1.1.0.md
268
+ - changelogs/template.yml
269
+ - changelogs/unreleased/.gitkeep
270
+ - changelogs/unreleased/20190619164723009_changelog.yml
271
+ - changelogs/unreleased/20190619190824221_docker.yml
272
+ - containers/limarka.dockerfile
273
+ - containers/ruby-latex-pandoc.dockerfile
264
274
  - docs/paper/codemeta.json
265
275
  - docs/paper/generate
266
276
  - docs/paper/open-canvas.md