- add configurable option for performing
rake bower:install
andrake bower:clean
tasks before assets precompilation - add ability to pass bower CLI options to bower-rails rake tasks if nessesary
rake bower:clean
task added to remove any component files not specified in their respective bower.json main directives by @paulnsorensen #65
- update initialize generator to create sample
Bowerfile
by @byterussian #64 - update initialize generator to create a
bower-rails
initializer file
- add configuration option for
BowerRails
that invokesrake bower:install
andrake bower:resolve
tasks before assets precompilation - fixed bug with
bower:resolve
task: skipFile.read
if it's not a file (ex.: a directory name contains ".css") by @yujiym #55
- Disable installing bower assets before precompilation
- Search node_modules directory local to project by @jimpo #52
- fixed bug with
bower:update
andbower update:prune
: now refreshesbower.json
after update task is executed rake bower:list
task now available- There is no more
dsl
namespace for rake tasks. Tasks are the same as forbower.json
also forBowerfile
configuration files. - Add support for standard bower package format by @kenips (#41)
- If a
.bowerrc
file is available in the rails project root, it will now be used as the starting point for the generated.bowerrc
by @3martini. (#40) - Root path is now always
Dir.pwd
without depending onRails.root
. Fixes #42 - [DSL] Allow to store assets only in
:lib
or:vendor
directories. - [DSL] Keep groups independent. Fixes #44
- [DSL] Assign default or custom
assets_path
for a group if it is not provided - Add
bower:resolve
task to fix relative URLs in CSS files with Rails asset_path helper and resolve bower components before precompile by @jimpo #49
- Jsfile was renamed to Bowerfile and BowerRails::Dsl#js to BowerRails::Dsl#asset ([discussion][]) [discussion]: rharriso#29