Sha256: d1f8b513a79ded810fa4142ee617f5f0cca3fad2145bea449f8a89aa88b709b9

Contents?: true

Size: 929 Bytes

Versions: 1

Compression:

Stored size: 929 Bytes

Contents

require File.expand_path("../helpers/download_helpers", __FILE__)

page "/blog_feed.xml", layout: false
ignore "/download-archive-single.html"

# Archived download pages
$vagrant_versions.each do |version|
  proxy "/download-archive/v#{version}.html", "/download-archive-single.html",
    locals: { version: version }, ignore: true
end

set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'

# Use the RedCarpet Markdown engine
set :markdown_engine, :redcarpet
set :markdown,
    fenced_code_blocks: true,
    with_toc_data: true

# Enable the blog and set the time zone so that post times appear
# correctly.
Time.zone = "America/Los_Angeles"

activate :blog do |b|
  b.layout = "blog_post"
  b.permalink = ":title.html"
  b.prefix = "blog"
end

# Build-specific configuration
configure :build do
  activate :asset_hash
  activate :minify_css
  activate :minify_html
  activate :minify_javascript
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/bundler/gems/vagrant-1e28f1ac31e7/website/www/config.rb