Sha256: 0de887bb75d06306bacef9568ce55381c6f843c723fe03313792b530f79b120b

Contents?: true

Size: 653 Bytes

Versions: 1

Compression:

Stored size: 653 Bytes

Contents

class Stencil
  class Msg
    class <<self
      
      def is_template_or_project?(name)
        puts "Is \"#{name}\" a template or a project?"
      end
      
      def merge_remote_branch(branch)
        puts "Merging remote branch \"#{branch}\""
      end
      
      def specify_template
        puts "Please tell stencil what template you want to receive updates from:"
        puts "  stencil TEMPLATE [BRANCH BRANCH ...]"
      end
      
      def template_not_found(template)
        puts "Template \"#{template}\" not found."
      end
      
      def template_url(url)
        puts "Found template URL: #{url}"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stencil-0.1.0 lib/stencil/msg.rb