Sha256: e5d555dcc5b6ef96ebffc4ac7d7988cd47eb154e28ccc53fdaff80117f8006a0
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# vim: set ft=ruby: # Borkfile set_project_root '.' # Add paths: # # append_asset_path 'foo/bar' # Add sprockets pre/post processors and template engines: # # register_postprocessor 'application/javascript', SomeClass # register_engine '.some-ext, SomeEngine # Add frameworks. Currently only compass and bootstrap (bootstrap-sass) are # supported. First add either to your Gemfile and bundle. # # use_framework :compass # use_framework :bootstrap add_sprockets_helpers do end # Pass in a single file or an array. compile_html 'index.html' es6_namespace '<%= namespace %>' # Call anything of these things inside a `configure <environment>` block to # make it environment specific configure :development do end configure :production do # Enable a javascript compressor. Whichever you enable, include the # corresponding gem in the Gemfile. # # compress_with :closure_compiler # compress_with :uglify end # Use :static index to fall back to sprockets-built html files OR pass in # a rack application set_backend :static_index
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
embork-0.0.13 | blueprint/Borkfile |