# File lib/webby/apps/generator.rb, line 252
  def identical?( src, dst )
    source      = IO.read(src)
    destination = IO.read(dst)
    source == destination
  end