Method: FileOpenUtil.included

Defined in:
lib/mako/file_open_util.rb

.included(base) ⇒ String

Opens and reads the passed in file. Thanks to the following article for explaining how to define a method on the included singleton class: 6ftdan.com/allyourdev/2015/02/24/writing-methods-for-both-class-and-instance-levels/

Parameters:

  • resource (String)

    the path to the resource

Returns:

  • (String)

    the opened resource



10
11
12
13
14
# File 'lib/mako/file_open_util.rb', line 10

def self.included(base)
  def base.load_resource(resource)
    File.open(resource, 'rb', encoding: 'utf-8', &:read)
  end
end