Hi Jeremy,
First of all, thank you so much for all your hard work on your open source projects!
I'm trying to use the assets from the bootstrap-sass gem with Roda's assets plugin.
So far, this is what I have:
```
plugin :assets,
css: 'app.scss',
js: [
Bootstrap.javascripts_path + '/bootstrap.js',
'app.js',
],
dependencies: {
Bootstrap.stylesheets_path + '_bootstrap.scss' => Dir[Bootstrap.stylesheets_path + '/**/*.scss'],
}
```
The app.scss asset with its @imports is served just fine. The problem is the absolute path to the bootstrap.js asset.
Here is the generated src tag:
```
<script type="text/javascript" src="/assets/js//home/aaron/.gem/ruby/2.2.3/gems/bootstrap-sass-3.3.5.1/assets/javascripts/bootstrap.js"></script>
```
Is there a way of using the bootstrap.js assest from the bootstrap-sass gem with the assets plugin?