README.md in bower-rails-0.8.2 vs README.md in bower-rails-0.8.3

- old
+ new

@@ -26,11 +26,11 @@ **Install** in Gemfile ``` Ruby - gem "bower-rails", "~> 0.8.2" + gem "bower-rails", "~> 0.8.3" ``` ##JSON configuration Bower-rails now supports the standard [bower package](https://github.com/bower/bower#defining-a-package) format out-of-the-box. Simply place your bower.json file the Rails root directory to start. Using the standard format will default all bower components to be installed under the `vendor` directory. @@ -172,10 +172,13 @@ # Invokes rake bower:resolve before precompilation. Defaults to false bower_rails.resolve_before_precompile = true # Invokes rake bower:clean before precompilation. Defaults to false bower_rails.clean_before_precompile = true + + # Invokes rake bower:install:deployment instead rake bower:install. Defaults to false + bower_rails.use_bower_install_deployment = true end ``` If you are using Rails version < 4.0.0 then you are to require `bower_rails.rb` initializer manually in `application.rb`: @@ -224,6 +227,6 @@ Remember that you should have [bower installed](#bower-installation) either locally in your project or on a remote server. ##Bower Main Files -Each bower component should follow the [bower.json spec](https://github.com/bower/bower.json-spec) which designates a recommended `main` directive that lists the primary files of that component. You may choose to reference these files if you are using the asset pipeline, in which case other extraneous includes of the bower component are not needed. The `rake bower:clean` task removes every file that isn't listed in the `main` directive, if the component specifies a `main` directive. Otherwise, the library will remain as bower installed it. +Each bower component should follow the [bower.json spec](https://github.com/bower/bower.json-spec) which designates a recommended `main` directive that lists the primary files of that component. You may choose to reference these files if you are using the asset pipeline, in which case other extraneous includes of the bower component are not needed. The `rake bower:clean` task removes every file that isn't listed in the `main` directive, if the component specifies a `main` directive. Otherwise, the library will remain as bower installed it. It supports wildcards in files listed in `main` directive.