Class: Hashie::Extensions::Parsers::YamlErbParser
- Inherits:
-
Object
- Object
- Hashie::Extensions::Parsers::YamlErbParser
- Defined in:
- lib/hashie/extensions/parsers/yaml_erb_parser.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(file_path, options = {}) ⇒ YamlErbParser
constructor
A new instance of YamlErbParser.
- #perform ⇒ Object
Constructor Details
#initialize(file_path, options = {}) ⇒ YamlErbParser
Returns a new instance of YamlErbParser.
9 10 11 12 13 |
# File 'lib/hashie/extensions/parsers/yaml_erb_parser.rb', line 9 def initialize(file_path, = {}) @content = File.read(file_path) @file_path = file_path.is_a?(Pathname) ? file_path.to_s : file_path @options = end |
Class Method Details
.perform(file_path, options = {}) ⇒ Object
25 26 27 |
# File 'lib/hashie/extensions/parsers/yaml_erb_parser.rb', line 25 def self.perform(file_path, = {}) new(file_path, ).perform end |
Instance Method Details
#perform ⇒ Object
15 16 17 18 19 20 21 22 23 |
# File 'lib/hashie/extensions/parsers/yaml_erb_parser.rb', line 15 def perform template = ERB.new(@content) template.filename = @file_path permitted_classes = @options.fetch(:permitted_classes) { [] } permitted_symbols = @options.fetch(:permitted_symbols) { [] } aliases = @options.fetch(:aliases) { true } yaml_safe_load(template, permitted_classes, permitted_symbols, aliases) end |