Sha256: 05f3f78e74063e680b4f807e728ef245292b8342fb01c581d0c78052ba5252f9

Contents?: true

Size: 1.21 KB

Versions: 5

Compression:

Stored size: 1.21 KB

Contents

module Nanoc::Int
  # Nanoc::Int::CodeSnippet represent a piece of custom code of a Nanoc site.
  #
  # @api private
  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=\"#{filename}\">"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nanoc-4.0.2 lib/nanoc/base/source_data/code_snippet.rb
nanoc-4.0.1 lib/nanoc/base/source_data/code_snippet.rb
nanoc-4.0.0 lib/nanoc/base/source_data/code_snippet.rb
nanoc-4.0.0rc3 lib/nanoc/base/source_data/code_snippet.rb
nanoc-4.0.0rc2 lib/nanoc/base/source_data/code_snippet.rb