Class: Limarka::Cli
- Inherits:
-
Thor
- Object
- Thor
- Limarka::Cli
- Includes:
- Thor::Actions
- Defined in:
- lib/limarka/cli.rb
Overview
Essa classe é responsável por interpretar e executar os comandos de linha da ferramenta. Para compreender sua utilização recomendo consultar a documentação do [thor](whatisthor.com).
Constant Summary collapse
- @@cv =
nil
Instance Method Summary collapse
- #check ⇒ Object
- #cronograma ⇒ Object
- #exec ⇒ Object
- #fig(arquivo = nil) ⇒ Object
- #importa(arquivo) ⇒ Object
- #menu ⇒ Object
- #tab ⇒ Object
Instance Method Details
#check ⇒ Object
30 31 32 33 |
# File 'lib/limarka/cli.rb', line 30 def check c = Limarka::Check.new() c.check() end |
#cronograma ⇒ Object
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
# File 'lib/limarka/cli.rb', line 231 def cronograma # https://github.com/abntex/limarka/issues/90 tex = "\\\\begin{table}[htbp]\n \\\\centering\n \\\\caption{Cronograma de atividades}\n \\\\label{tab:cronograma}\n \\\\begin{tabular}{|c|c|c|c|c|c|}\n\\\\hline\nFase & Mar\u00E7o & Abril & Maio & Junho & Julho \\\\\\\\\n\\\\hline\n1 & \\\\textbullet & & & & \\\\\\\\\n2 & & \\\\textbullet & & & \\\\\\\\\n3 & & & \\\\textbullet & & \\\\\\\\\n4 & & & & \\\\textbullet & \\\\\\\\\n5 & & & & & \\\\textbullet \\\\\\\\\n\\\\hline\n \\\\end{tabular}\n \\\\legend{Fonte: Autor.}\n\\\\end{table}\n\n\\\\begin{table}[htbp]\n \\\\centering\n \\\\caption{Cronograma de atividades}\n \\\\label{tab:cronograma}\n \\\\begin{tabular}{|l|c|c|c|c|c|}\n\\\\hline\nAtividade & Mar\u00E7o & Abril & Maio & Junho & Julho \\\\\\\\\n\\\\hline\nXXXXXXXXXXXXXXXX & \\\\textbullet & & & & \\\\\\\\\nXXXXXXXXXXXXXXXX & & \\\\textbullet & & & \\\\\\\\\nXXXXXXXX & & & \\\\textbullet & & \\\\\\\\\nXXXXXXXX & & & & \\\\textbullet & \\\\\\\\\nXXXXXXXX & & & & & \\\\textbullet \\\\\\\\\n\\\\hline\n \\\\end{tabular}\n \\\\legend{Fonte: Autor.}\n\\\\end{table}\n" puts tex end |
#exec ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/limarka/cli.rb', line 47 def exec if ([:version]) then puts "limarka "+Limarka::VERSION s = `pandoc --version` s << `ruby --version` s << `pdftk --version` s << `latexmk --version` s << `xelatex --version` puts s return end #options[:output_dir] = File.absolute_path(options[:output_dir]) Dir.chdir([:input_dir]) do t = Limarka::Trabalho.new t.atualiza_de_arquivos() @@cv = Limarka::Conversor.new(t,) @@cv.convert @@cv.usa_pdftotext = false @@cv.compila if [:compila_tex] end end |
#fig(arquivo = nil) ⇒ Object
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/limarka/cli.rb', line 92 def fig(arquivo=nil) if ([:clipboard]) then arquivo = Clipboard.paste # Ler do clipboard, requer xclip: sudo apt-get install xclip end if (arquivo) then if arquivo.start_with?("file://") then arquivo = arquivo[7,-1] end end if ([:interativo]) then arquivo = ask_figura_arquivo(arquivo) valida_figura_arquivo(arquivo) # antecipando validação issue #78 legenda = ask_figura_legenda fonte = ask_figura_fonte rotulo = ask_figura_rotulo(rotulo, arquivo) valida_figura_rotulo(rotulo) # antecipando validação issue #78 dimensoes = ask_figura_dimensoes else legenda = [:legenda] fonte = [:fonte] rotulo = [:rotulo] if (not arquivo) then arquivo = ask_figura_arquivo(nil) end valida_figura_arquivo(arquivo) # antecipando validação issue #78 rotulo = "fig:" + propoe_rotulo(File.basename arquivo, ".*") if rotulo.nil? valida_figura_rotulo(rotulo) # antecipando validação issue #78 dimensoes = [:dimensoes] end dimensoes.each do |dim| escala = (dim.to_f)/100 figura_tex = "\n\\\\begin{figure}[htbp]\n\\\\caption{\\\\label{\#{rotulo}}\#{legenda}}\n\\\\begin{center}\n\\\\includegraphics[width=\#{escala}\\\\textwidth]{\#{arquivo}}\n\\\\end{center}\n\\\\legend{Fonte: \#{fonte}}\n\\\\end{figure}\n" say figura_tex end say "\n<!--Para referenciar a figura acima no texto utilize: Figura \\ref\{#{rotulo}} \n-->\n" end |
#importa(arquivo) ⇒ Object
74 75 76 77 |
# File 'lib/limarka/cli.rb', line 74 def importa(arquivo) diretorio = File.dirname(arquivo) system "pandoc", "-t", "markdown", "-o", "#{diretorio}/trabalho-academico.md", arquivo end |
#menu ⇒ Object
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/limarka/cli.rb', line 274 def table = Terminal::Table.new :title => "Menu interativo - limarka v#{Limarka::VERSION}\n#{Dir.pwd}", :headings => ['Comando', 'Descrição'] do |t| t << ["exec", "Executa o limarka."] t << ["figura","Imprime código para adição de Figura."] t << ["tabela","Imprime código para adição de Tabela."] t << ["cronograma","Imprime código para inclusão de Cronograma."] t << ["rascunho","Executa o limarka lendo de rascunho.md"] t << ["web","Imprime o endereço da documentação online."] t << ["menu","Imprime esse menu."] t << ["sair","Termina o menu interativo."] end puts table puts "Pressione TAB para completar o comando ao digitar: 'sa'+TAB completa para 'sair'" sair = false until sair do cmd = ask("Qual comando deseja executar?", :limited_to => ["exec", "figura", "tabela", "cronograma","rascunho","web","menu","sair"]) case cmd when "sair" sair = true when "menu" puts table when "exec" system "limarka","exec" when "web" puts "https://github.com/abntex/limarka/wiki" puts "" when "figura" system "limarka", "fig","-i" when "tabela" system "limarka", "tab" when "cronograma" system "limarka", "cronograma" when "rascunho" system "limarka", "exec", "--rascunho=rascunho.md" else "Você digitou a opção #{cmd} -- esta não é uma opção válida, apresentando o menu.\n" puts table end end end |
#tab ⇒ Object
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'lib/limarka/cli.rb', line 158 def tab legenda = [:legenda] fonte = [:fonte] rotulo_lido = [:rotulo] if rotulo_lido then rotulo = rotulo_lido else rotulo = "tab:"+(Time.now.to_i % 100000).to_s end nota = [:nota] if nota then nota_linha = " \\nota{#{nota}}%\n" else nota_linha = "" end valida_tabela_rotulo(rotulo) say "\n\\\\begin{table}[htb]\n\\\\ABNTEXfontereduzida\n\\\\caption{\#{legenda}}\n\\\\label{\#{rotulo}}\n\\\\begin{tabular}{p{2.6cm}|p{6.0cm}|p{2.25cm}|p{3.40cm}}\n %\\\\hline\n \\\\textbf{N\u00EDvel de Investiga\u00E7\u00E3o} & \\\\textbf{Insumos} & \\\\textbf{Sistemas de Investiga\u00E7\u00E3o} & \\\\textbf{Produtos} \\\\\\\\\n\\\\hline\nMeta-n\u00EDvel & Filosofia\\\\index{filosofia} da Ci\u00EAncia & Epistemologia &\nParadigma \\\\\\\\\n\\\\hline\nN\u00EDvel do objeto & Paradigmas do metan\u00EDvel e evid\u00EAncias do n\u00EDvel inferior &\nCi\u00EAncia & Teorias e modelos \\\\\\\\\n\\\\hline\nN\u00EDvel inferior & Modelos e m\u00E9todos do n\u00EDvel do objeto e problemas do n\u00EDvel inferior & Pr\u00E1tica & Solu\u00E7\u00E3o de problemas \\\\\\\\\n % \\\\hline\n\\\\end{tabular}\n\\\\legend{Fonte: \#{fonte}}\n\\\\end{table}\n\n\\\\begin{table}[htb]\n\\\\IBGEtab{%\n \\\\caption{\#{legenda}}%\n \\\\label{\#{rotulo}}\n}{%\n \\\\begin{tabular}{ccc}\n \\\\toprule\n Nome & Nascimento & Documento \\\\\\\\\n \\\\midrule \\\\midrule\n Maria da Silva & 11/11/1111 & 111.111.111-11 \\\\\\\\\n \\\\midrule\n Jo\u00E3o Souza & 11/11/2111 & 211.111.111-11 \\\\\\\\\n \\\\midrule\n Laura Vicu\u00F1a & 05/04/1891 & 3111.111.111-11 \\\\\\\\\n \\\\bottomrule\n\\\\end{tabular}%\n}{%\n \\\\fonte{\#{fonte}}%\n\#{nota_linha}}\n\\\\end{table}\n\n<!--\nPara referenciar a tabela acima no texto utilize: Tabela \\\\ref\\{\#{rotulo}}\n-->\n" # say tabela_tex end |