Class: MDSS
- Inherits:
-
Object
- Object
- MDSS
- Defined in:
- lib/mdss.rb
Overview
MDSS will serve as the main class for the gem, providing the hooks to the inner working classes as needed.
Class Method Summary collapse
-
.get_extra ⇒ Object
call-seq: MDSS.get_extra => MDSSExtra.
-
.mdss_init(name) ⇒ Object
call-seq: MDSS.mdss_init(name) => nil.
Class Method Details
.mdss_init(name) ⇒ Object
call-seq:
MDSS.mdss_init(name) => nil
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.
27 28 29 |
# File 'lib/mdss.rb', line 27 def self.mdss_init(name) MDSSInit.mdss_init name end |