LoDashAssets

LoDashAssets compiles your Lo-Dash templates in your Sprockets environment.

Templates are compiled using lodash.js 1.2.0.

Installation

Add this line to your Gemfile:

gem 'lodash-assets'

And then execute:

$ bundle

Usage

LoDashAssets.configure do |config|
  config.path_prefix = 'templates'
  config.template_extensions = %w( lodash_template )
  config.template_namespace = 'LoDashTemplates'
end
  LoDashTemplates['admin/setting'](data); // Renders templates/admin/settings.lodash_template

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request