class MDSS

MDSS will serve as the main class for the gem, providing the hooks to the inner working classes as needed.

Public Class Methods

get_extra → MDSSExtra click to toggle source

Provides an instance of MDSSExtra for helper functions throughout the MDSS gem.

# File lib/mdss.rb, line 17
def self.get_extra
    MDSSExtra.new
end
mdss_init(name) → nil click to toggle source

Creates a new simple static site in the directory specified by name. If the directory exists, it will attempt to setup a simple static site within it anyway.

# File lib/mdss.rb, line 27
def self.mdss_init(name)
    MDSSInit.mdss_init name
end