require 'alephant/preview/server' require 'alephant/preview/template'

namespace :alephant do

namespace :preview do
  task :go do
    Alephant::Preview::Server.run!
  end
  task :update do
    Alephant::Preview::Template.update(
      "#{::Alephant::Preview.path}/templates/preview.mustache"
    )
  end
end

end