class JpStringsFinder::Printer

Attributes

list[R]

Public Class Methods

new(list) click to toggle source
# File lib/jp_strings_finder/printer.rb, line 9
def initialize(list)
  @list = list
end

Public Instance Methods

print_table() click to toggle source

Private Instance Methods

to_relative_path(root, path) click to toggle source
# File lib/jp_strings_finder/printer.rb, line 34
def to_relative_path(root, path)
  Pathname.new(path).relative_path_from(Pathname.new(root)).to_s
end