Method: Dassets::NullSourceFile#initialize
- Defined in:
- lib/dassets/source_file.rb
#initialize(digest_path, options = nil) ⇒ NullSourceFile
Returns a new instance of NullSourceFile.
93 94 95 96 97 98 99 100 101 |
# File 'lib/dassets/source_file.rb', line 93 def initialize(digest_path, = nil) @file_path, @ext_list = '', [] @digest_path = digest_path @source_proxy = if Dassets.config.combination?(@digest_path) SourceProxy.new(@digest_path, ) else NullSourceProxy.new end end |