Sha256: 314940d820e722fd2c1effc3424b908f8de00e3e727b6fad19c89c1cee341399
Contents?: true
Size: 793 Bytes
Versions: 1
Compression:
Stored size: 793 Bytes
Contents
$:.push *Dir[File.expand_path('../../vendor/*/lib', __FILE__)] gem 'shake', '~> 0.1' require 'fileutils' require 'ostruct' require 'yaml' require 'tilt' require 'shake' class Hyde VERSION = "0.1.0" PREFIX = File.expand_path('../', __FILE__) Error = Class.new(StandardError) LegacyError = Class.new(Error) VersionError = Class.new(Error) NoGemError = Class.new(Error) autoload :Project, "#{PREFIX}/hyde/project" autoload :Page, "#{PREFIX}/hyde/page" autoload :Meta, "#{PREFIX}/hyde/meta" autoload :Config, "#{PREFIX}/hyde/config" autoload :CLI, "#{PREFIX}/hyde/cli" autoload :Layout, "#{PREFIX}/hyde/layout" autoload :Partial, "#{PREFIX}/hyde/partial" autoload :Helpers, "#{PREFIX}/hyde/helpers" def self.version VERSION end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hydeweb-0.1.0 | lib/hyde.rb |