Sha256: 5eb4a215a3639f2771072fddc0ca7aa974a874aab8abe30235f9945e262d4aae
Contents?: true
Size: 1.3 KB
Versions: 3
Compression:
Stored size: 1.3 KB
Contents
# For custom domains on github pages page "CNAME", layout: false set :build_dir, '../kiosk/public' set :css_dir, 'stylesheets' set :js_dir, 'javascripts' set :images_dir, 'images' # Better markdown support # set :markdown, :tables => true, :autolink => true, :gh_blockcode => true, :fenced_code_blocks => true # set :markdown_engine, :redcarpet activate :meta_tags # Turn this on if you want to make your url's prettier, without the .html # activate :directory_indexes # Automatic image dimensions on image_tag helper # activate :automatic_image_sizes # Easier bootstrap navbars activate :bootstrap_navbar configure :development do activate :livereload end # Build-specific configuration configure :build do # Any files you want to ignore: ignore '/admin/*' ignore '/stylesheets/admin/*' # For example, change the Compass output style for deployment activate :minify_css # Minify Javascript on build #activate :minify_javascript # Enable cache buster activate :asset_hash # Use relative URLs activate :relative_assets # Or use a different image path # set :http_prefix, "/blog/" end # This will push to the gh-pages branch of the repo, which will # host it on github pages (If this is a github repository) activate :deploy do |deploy| deploy.method = :git deploy.build_before = true end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
benevolent_gaze-1.0.2 | frontend/config.rb |
benevolent_gaze-1.0.1 | frontend/config.rb |
benevolent_gaze-1.0.0 | frontend/config.rb |