Skip to content

Commit 734f182

Browse files
committedApr 2, 2018
Cleans up requires.
1 parent e13ec08 commit 734f182

11 files changed

+5
-21
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TeXLogParser
22

33
[![Gem Version](https://badge.fury.io/rb/tex_log_parser.svg)](https://badge.fury.io/rb/tex_log_parser)
4-
[![Yard docs](http://img.shields.io/badge/yard-docs-green.svg)](http://www.rubydoc.info/gems/tex_log_parser/1.0.0.pre.1) **˙**
4+
[![Yard docs](http://img.shields.io/badge/yard-docs-green.svg)](http://www.rubydoc.info/gems/tex_log_parser/1.0.0.pre.2) **˙**
55
[![Maintainability](https://api.codeclimate.com/v1/badges/748992a2c5f6570797d4/maintainability)](https://codeclimate.com/github/reitzig/texlogparser/maintainability)
66
[![Test Coverage](https://api.codeclimate.com/v1/badges/748992a2c5f6570797d4/test_coverage)](https://codeclimate.com/github/reitzig/texlogparser/test_coverage) **˙**
77
[![Travis build status](https://api.travis-ci.org/reitzig/texlogparser.svg?branch=master)](https://travis-ci.org/reitzig/texlogparser)

‎bin/texlogparser

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
#!/usr/bin/env ruby
22

3-
if $PROGRAM_NAME == __FILE__
4-
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
5-
end
6-
73
require 'tex_log_parser'
84
require 'optparse'
95
require 'json'
@@ -69,6 +65,7 @@ output = File.open(options[:output], 'w') if options[:output].is_a?(String)
6965
case options[:format]
7066
when :file_line
7167
output.write(messages.map { |m| m.to_s }.join("\n\n"))
68+
# TODO: print summary?
7269
when :json
7370
output.write(JSON.pretty_generate(messages))
7471
end

‎lib/tex_log_parser.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
require 'tex_log_parser/log_message'
12
require 'tex_log_parser/log_parser'
2-
require 'tex_log_parser/version'
3+
require "tex_log_parser/log_pattern"
34
Dir["#{File.expand_path(__dir__)}/tex_log_parser/patterns/*.rb"].each { |p| require p }
45

56
# TODO: document

‎lib/tex_log_parser/log_parser.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/log_buffer.rb"
2-
31
# TODO: document
42
module LogParser
53
attr_reader :messages

‎lib/tex_log_parser/log_pattern.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/log_message.rb"
2-
31
# TODO: Document
42
module LogPattern
53
# TODO: Document

‎lib/tex_log_parser/patterns/bad_hbox_warning.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/../log_pattern"
2-
31
# TODO: document
42
class BadHboxWarning
53
include RegExpPattern

‎lib/tex_log_parser/patterns/file_line_error.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/../log_pattern"
2-
31
# Matches messages of this form:
42
#
53
# ./plain.tex:31: Undefined control sequence.

‎lib/tex_log_parser/patterns/fontspec_error.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/../log_pattern"
2-
31
# TODO: document
42
class FontspecError
53
include RegExpPattern

‎lib/tex_log_parser/patterns/prefixed_multi_line_pattern.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/../log_pattern"
2-
31
# Matches messages of this form:
42
#
53
# Package tocbasic Info: omitting babel extension for `toc'

‎lib/tex_log_parser/patterns/runaway_parameter_error.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "#{File.expand_path(__dir__)}/../log_pattern"
2-
31
# TODO: document
42
class RunawayParameterError
53
include RegExpPattern

‎lib/tex_log_parser/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class TexLogParser
2-
VERSION = '1.0.0.pre.2'
2+
VERSION = '1.0.0.pre.3'
33
end

0 commit comments

Comments
 (0)
Please sign in to comment.