-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Rakefile
96 lines (76 loc) · 2.46 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# coding: utf-8
require "bundler/gem_tasks"
require "rspec/core/rake_task"
require 'limarka/version'
require 'colorize'
require 'open3'
require 'yaml'
require 'rake/clean'
#require 'pdf_forms'
desc 'Executa os testes ruby'
RSpec::Core::RakeTask.new('spec:ruby') do |t|
t.rspec_opts = "--tag ~compilacao --tag ~dependencias_latex"
end
desc 'Executa os testes com geração de pdf'
RSpec::Core::RakeTask.new('spec:pdf') do |t|
t.rspec_opts = "--tag compilacao --tag dependencias_latex"
end
desc 'Executa o teste mínimo de compilação'
RSpec::Core::RakeTask.new('spec:latex_minimo') do |t|
t.rspec_opts = "--tag latex_minimo"
end
namespace :cucumber do
desc 'Executa testes cucumber que NÃO envolvem gerão de pdfs'
task :ruby do
system "cucumber -t 'not @pdf' -f progress"
end
desc 'Executa testes cucumber que envolvem gerão de pdfs'
task :pdf do
system "cucumber -t '@pdf' -f progress"
end
end
task :default => ['spec:ruby']
# http://stackoverflow.com/questions/19841865/ruby-gem-to-extract-form-data-from-fillable-pdf
# https://github.com/jkraemer/pdf-forms/blob/master/test/pdf_test.rb
directory 'dissertacao-limarka/output'
desc 'Compila dissertação'
task :dissertacao => 'dissertacao-limarka/output' do
system 'bundle', 'exec', 'limarka', 'exec', '-i', 'dissertacao-limarka', '-o', 'dissertacao-limarka/output'
end
desc "Aplica tag v#{Limarka::VERSION}"
task 'tag' do
system 'git', 'commit', '-m', %Q(Gerando versão v#{Limarka::VERSION})
system 'git', 'tag', %Q(v#{Limarka::VERSION})
system 'git', 'push'
system 'git', 'push', '--tags'
end
desc "Gera codelog para release de v#{Limarka::VERSION}"
task 'codelog' do
system 'codelog', 'release', "#{Limarka::VERSION}"
end
desc "Gera entrada par ao codelog"
task 'codelog:new', [:feature] do |t, args|
system 'codelog', 'new', args[:feature]
end
# Desatualizado
namespace 'docker' do
desc 'Constroi imagem docker'
task 'build' do
sh 'bin/build-docker.sh'
end
desc 'Publica imagens docker do limarka no travis'
task 'deploy' do
sh 'bin/deploy-docker.sh'
end
desc 'Executa o docker dentro do modelo'
task 'run' do
Dir.chdir('modelo-oficial') do
rm_rf("xxx*")
sh 'docker run --mount src=`pwd`,target=/trabalho,type=bind limarka exec'
end
end
end
PREAMBULO="templates/preambulo.tex"
PRETEXTUAL = "templates/pretextual.tex"
POSTEXTUAL = "templates/postextual.tex"
CLEAN.include(["xxx-*",PREAMBULO,PRETEXTUAL,POSTEXTUAL,"templates/configuracao.yaml",'tmp'])