1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/generators/erb.rb

27 lines
483 B
Ruby

# frozen_string_literal: true
require_relative "named_base"
module Erb # :nodoc:
module Generators # :nodoc:
class Base < Rails::Generators::NamedBase #:nodoc:
private
def formats
[format]
end
def format
:html
end
def handler
:erb
end
def filename_with_extensions(name, file_format = format)
[name, file_format, handler].compact.join(".")
end
end
end
end