class Jekyll::LocalTheme::Theme

Public Class Methods

new(name, root) click to toggle source
Calls superclass method
# File lib/jekyll-local-theme/theme.rb, line 6
def initialize(name, root)
  @root = root
  super(name)
end

Private Instance Methods

gemspec() click to toggle source
# File lib/jekyll-local-theme/theme.rb, line 13
def gemspec
  @gemspec ||= MockGemspec.new(self)
end