module Bobkit::LocationOptions

Public Instance Methods

assets_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 29
def assets_folder(path=nil)
  setopt :assets_folder, path, "#{root_folder}/assets"
end
assets_output_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 50
def assets_output_folder(path=nil)
  setopt :assets_output_folder, path, "#{output_folder}/assets"
end
coffee_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 21
def coffee_folder(path=nil)
  setopt :coffee_folder, path, "#{root_folder}/coffee"
end
css_output_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 41
def css_output_folder(path=nil)
  setopt :css_output_folder, path, "#{output_folder}/css"
end
js_output_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 45
def js_output_folder(path=nil)
  setopt :js_output_folder, path, "#{output_folder}/js"
end
layouts_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 37
def layouts_folder(path=nil)
  setopt :layouts_folder, path, "#{templates_folder}/layouts"
end
locales_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 33
def locales_folder(path=nil)
  setopt :locales_folder, path, "#{root_folder}/locales"
end
markdown_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 13
def markdown_folder(path=nil)
  setopt :markdown_folder, path, "#{root_folder}/markdown"
end
output_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 25
def output_folder(path=nil)
  setopt :output_folder, path, "#{root_folder}/output"
end
root_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 5
def root_folder(path=nil)
  setopt :root_folder, path, '.'
end
styles_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 17
def styles_folder(path=nil)
  setopt :styles_folder, path, "#{root_folder}/styles"
end
templates_folder(path=nil) click to toggle source
# File lib/bobkit/location_options.rb, line 9
def templates_folder(path=nil)
  setopt :templates_folder, path, "#{root_folder}/templates"
end