Class: LatexFlow::CLI::BibTeX
- Defined in:
- lib/latex-flow/cli/bibtex.rb
Instance Method Summary collapse
Methods inherited from Generic
Constructor Details
This class inherits a constructor from LatexFlow::CLI::Generic
Instance Method Details
#run ⇒ Object
7 8 9 10 11 12 |
# File 'lib/latex-flow/cli/bibtex.rb', line 7 def run t = Tools::BibTeX.new("#{ENV.fetch('BIBTEX', 'bibtex')} #{@options[:target]}") t.run $stderr.puts t.(color:[:color]) if [:verbose] exit(false) if !t.success? end |