Sha256: f99fa4b634f226a77955b9458d65c9d3bc3d02ca1017bedd9942e3ab671970bf

Contents?: true

Size: 700 Bytes

Versions: 1

Compression:

Stored size: 700 Bytes

Contents

module Massimo
  autoload :CLI,        'massimo/cli'
  autoload :Config,     'massimo/config'
  autoload :Helpers,    'massimo/helpers'
  autoload :Javascript, 'massimo/javascript'
  autoload :Page,       'massimo/page'
  autoload :Resource,   'massimo/resource'
  autoload :Server,     'massimo/server'
  autoload :Site,       'massimo/site'
  autoload :Stylesheet, 'massimo/stylesheet'
  autoload :UI,         'massimo/ui'
  autoload :View,       'massimo/view'
  autoload :Watcher,    'massimo/watcher'
  
  VERSION = '0.6.2'
  
  class << self
    def site
      @site ||= Site.new
    end
  
    def site=(site)
      @site = site
    end
    
    def config
      site.config
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
massimo-0.6.2 lib/massimo.rb