Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
module Nanoc::VCSes class Mercurial < Nanoc::VCS identifiers :mercurial, :hg def add(filename) system('hg', 'add', filename) end def remove(filename) system('hg', 'rm', filename) end def move(src, dst) system('hg', 'mv', src, dst) end end end
From the Design Piracy series on my blog: