class JekyllPig::SourceGallery
Public Class Methods
new(path, name)
click to toggle source
# File lib/jekyll_pig.rb, line 17 def initialize(path, name) @path = path @name = name end
Public Instance Methods
name()
click to toggle source
# File lib/jekyll_pig.rb, line 27 def name @name end
path()
click to toggle source
# File lib/jekyll_pig.rb, line 24 def path @path end
to_s()
click to toggle source
# File lib/jekyll_pig.rb, line 21 def to_s "gallery #{@name} at #{@path}" end