module Kanboard

Constants

VERSION

Public Class Methods

do_it(filename) click to toggle source
# File lib/kanboard.rb, line 7
def self.do_it(filename)
  board = Board.new
  board.load(filename)

  r = JekyllRenderer.new(board)
  r.render
end