class MiddlemanWebpacker::FileLoader
Attributes
data[RW]
Public Class Methods
load(path = file_path)
click to toggle source
# File lib/middleman-webpacker/file_loader.rb, line 9 def self.load(path = file_path) self.instance = new(path) end
new(path)
click to toggle source
# File lib/middleman-webpacker/file_loader.rb, line 15 def initialize(path) @path = path @data = load end
Private Instance Methods
load()
click to toggle source
# File lib/middleman-webpacker/file_loader.rb, line 20 def load {}.freeze end