class Bunto::Page

Public Instance Methods

write(dest) click to toggle source
# File lib/bunto-press.rb, line 67
def write(dest)
  dest_path = destination(dest)
  if exclude?(dest, dest_path)
    output_file(dest_path, output)
  else
    output_html(dest_path, output)
  end
end