Sha256: ddd23b24ecfcd5b2f9eab010ac1acd86885c929379f90726630a247a10e40472
Contents?: true
Size: 708 Bytes
Versions: 13
Compression:
Stored size: 708 Bytes
Contents
# encoding: utf-8 module Middleman module Presentation # Simple Plugin module SimplePlugin extend PluginApi add_assets( path: File.expand_path('../../../../../../vendor/assets', __FILE__), importable_files: ['.*\.scss'] ) add_component( name: 'angular', version: 'latest', importable_files: ['.*\.js'] ) add_component( name: 'impress.js', version: 'latest', importable_files: ['js/impress\.js'] ) add_helpers do def test_simple_helper1 'test_simple_helper1' end end add_helpers Middleman::Presentation::SimplePlugin::Helpers end end end
Version data entries
13 entries across 13 versions & 1 rubygems