Sha256: cf66961da6c5370b2b3da1804fc03c81ec34d7cfcb8ccec5c028915265e32756
Contents?: true
Size: 641 Bytes
Versions: 5
Compression:
Stored size: 641 Bytes
Contents
require 'webby' SITE = Webby.site # Webby defaults SITE.content_dir = 'content' SITE.output_dir = 'output' SITE.layout_dir = 'layouts' SITE.template_dir = 'templates' SITE.exclude = %w[tmp$ bak$ ~$ CVS \.svn] SITE.page_defaults = { 'layout' => 'default' } # Items used to deploy the webiste SITE.host = 'user@hostname.tld' SITE.remote_dir = '/not/a/valid/dir' SITE.rsync_args = %w(-av --delete) # Options passed to the 'tidy' program when the tidy filter is used SITE.tidy_options = '-indent -wrap 80' # Load the other rake files in the tasks folder Dir.glob('tasks/*.rake').sort.each {|fn| import fn} # EOF
Version data entries
5 entries across 5 versions & 1 rubygems