rails--rails/actionview/lib/action_view/template/sources/file.rb

18 lines
271 B
Ruby

# frozen_string_literal: true
module ActionView
class Template
module Sources
class File
def initialize(filename)
@filename = filename
end
def to_s
::File.binread @filename
end
end
end
end
end