module Gypsum module Templates class Default < Gypsum::TemplateRunner # Descriptions desc "Runs the default gypsum Rails 3.1 stack task" # The method to run when the template is invoked def on_invocation # Dup our options so we can modify them opts = options.dup end private def git_user_name `git config --global user.name`.chomp.gsub('"', '\"') || "zsiec" end def git_user_email `git config --global user.email`.chomp || "thomas.symborski@gmail.com" end def user_password 'asdoajsndokasodnaosdjn' end end end end