Class: Epuber::RubyTemplater

Inherits:
Object
  • Object
show all
Defined in:
lib/epuber/vendor/ruby_templater.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#file_pathString

Returns:

  • (String)


16
17
18
# File 'lib/epuber/vendor/ruby_templater.rb', line 16

def file_path
  @file_path
end

#localsHash

Returns:

  • (Hash)


20
21
22
# File 'lib/epuber/vendor/ruby_templater.rb', line 20

def locals
  @locals
end

#source_textString

Returns:

  • (String)


12
13
14
# File 'lib/epuber/vendor/ruby_templater.rb', line 12

def source_text
  @source_text
end

Class Method Details

.from_file(file) ⇒ self

Parameters:

  • file (String, File)

Returns:

  • (self)


37
38
39
40
41
42
43
44
45
# File 'lib/epuber/vendor/ruby_templater.rb', line 37

def self.from_file(file)
  file_obj = if file.is_a?(String)
               File.new(file, 'r')
             else
               file
             end

  from_source(file_obj.read, file_obj.path)
end

.from_source(source, file_path = nil) ⇒ self

Parameters:

  • source (String)

Returns:

  • (self)


26
27
28
29
30
31
# File 'lib/epuber/vendor/ruby_templater.rb', line 26

def self.from_source(source, file_path = nil)
  inst = new
  inst.source_text = source
  inst.file_path = file_path
  inst
end

Instance Method Details

#renderString

Returns:

  • (String)


63
64
65
66
67
# File 'lib/epuber/vendor/ruby_templater.rb', line 63

def render
  hash_binding = HashBinding.new(locals)
  eval_string = %(%(#{source_text}))
  eval(eval_string, hash_binding.get_binding)
end

#with_locals(locals = {}) ⇒ self

Parameters:

  • locals (Hash) (defaults to: {})

Returns:

  • (self)


56
57
58
59
# File 'lib/epuber/vendor/ruby_templater.rb', line 56

def with_locals(locals = {})
  self.locals = locals
  self
end