Sha256: 0123c3ef4e23dabf34899c5f8d236264b8ab6718c0c8d0df21f85f8f5fee2b7e
Contents?: true
Size: 433 Bytes
Versions: 128
Compression:
Stored size: 433 Bytes
Contents
require 'rails/generators/named_base' module Erb # :nodoc: module Generators # :nodoc: class Base < Rails::Generators::NamedBase #:nodoc: protected def formats [format] end def format :html end def handler :erb end def filename_with_extensions(name, format = self.format) [name, format, handler].compact.join(".") end end end end
Version data entries
128 entries across 123 versions & 11 rubygems