Sha256: c57ad58d17f5e4c9ba5483b7b56a8a331160f48637de864169b458ebd5b342da
Contents?: true
Size: 1.37 KB
Versions: 8
Compression:
Stored size: 1.37 KB
Contents
# encoding: utf-8 module Nanoc # Nanoc::CodeSnippet represent a piece of custom code of a nanoc site. class CodeSnippet # A string containing the actual code in this code snippet. # # @return [String] attr_reader :data # The filename corresponding to this code snippet. # # @return [String] attr_reader :filename # Creates a new code snippet. # # @param [String] data The raw source code which will be executed before # compilation # # @param [String] filename The filename corresponding to this code snippet # # @param [Time, Hash] params Extra parameters. Ignored by nanoc; it is # only included for backwards compatibility. def initialize(data, filename, params=nil) @data = data @filename = filename end # Loads the code by executing it. # # @return [void] def load eval(@data, TOPLEVEL_BINDING, @filename) end # Returns an object that can be used for uniquely identifying objects. # # @return [Object] An unique reference to this object def reference [ :code_snippet, filename ] end def inspect "<#{self.class} filename=\"#{self.filename}\">" end # @return [String] The checksum for this object. If its contents change, # the checksum will change as well. def checksum @data.checksum end end end
Version data entries
8 entries across 8 versions & 1 rubygems