mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
393 B
Ruby
19 lines
393 B
Ruby
module ActionView #:nodoc:
|
|
class InlineTemplate #:nodoc:
|
|
include Renderable
|
|
|
|
attr_reader :source, :extension, :method_segment
|
|
|
|
def initialize(source, type = nil)
|
|
@source = source
|
|
@extension = type
|
|
@method_segment = "inline_#{@source.hash.abs}"
|
|
end
|
|
|
|
private
|
|
# Always recompile inline templates
|
|
def recompile?
|
|
true
|
|
end
|
|
end
|
|
end
|