class JekyllPig::SourceGallery

Public Class Methods

new(path, name) click to toggle source
# File lib/jekyll-pig.rb, line 9
def initialize(path, name)
    @path = path
    @name = name
end

Public Instance Methods

name() click to toggle source
# File lib/jekyll-pig.rb, line 19
def name
    @name
end
path() click to toggle source
# File lib/jekyll-pig.rb, line 16
def path
    @path
end
to_s() click to toggle source
# File lib/jekyll-pig.rb, line 13
def to_s
    "gallery #{@name} at #{@path}"
end