Sha256: 6b956add4a12f622d5e4bd15abe9e4afc7c4092ab705b1fda7cda21559bf8eec
Contents?: true
Size: 624 Bytes
Versions: 2
Compression:
Stored size: 624 Bytes
Contents
# encoding: UTF-8 module Octopress module Ink DEFAULT_OPTIONS = { 'asset_pipeline' => { 'combine_css' => true, 'compress_css' => true, 'combine_js' => true, 'compress_js' => true, 'uglifier' => {}, 'async_css' => false, 'async_js' => true, 'stylesheets_destination' => 'stylesheets', 'javascripts_destination' => 'javascripts', }, 'date_format' => 'ordinal', } def self.configuration(options={}) @config ||= Jekyll::Utils.deep_merge_hashes(DEFAULT_OPTIONS, Octopress.configuration(options)) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
octopress-ink-1.2.1 | lib/octopress-ink/configuration.rb |
octopress-ink-1.2.0 | lib/octopress-ink/configuration.rb |