Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmeiklejohn/rebar_js_minispade_plugin
Rebar support for minispade usage with JavaScript files.
https://github.com/cmeiklejohn/rebar_js_minispade_plugin
Last synced: about 2 months ago
JSON representation
Rebar support for minispade usage with JavaScript files.
- Host: GitHub
- URL: https://github.com/cmeiklejohn/rebar_js_minispade_plugin
- Owner: cmeiklejohn
- License: apache-2.0
- Created: 2012-08-03T23:32:50.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-14T01:26:31.000Z (over 12 years ago)
- Last Synced: 2024-10-26T08:56:53.406Z (2 months ago)
- Language: Erlang
- Size: 118 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rebar JS Minispade Plugin
Minispade support during rebar compilation.
## Installation
Specify ```rebar_js_minispade_plugin``` as a dependency in your ```rebar.config```.
```erlang
{deps, [
{rebar_js_minispade_plugin, ".*",
{git, "git://github.com/cmeiklejohn/rebar_js_minispade_plugin.git", {branch, "master"}}}
]}.
```Then, configure as a plugin in your ```rebar.config```.
```erlang
{plugins, [rebar_js_minispade_plugin]}.
```## Configuration
Example usage:
```erlang
{js_minispade, [
{out_dir, "priv/assets/javascripts"},
{doc_root, "priv/www/javascripts"},
{modules, ["models", "controllers"]}
]}.
```