diff options
| author | Teddy Wing | 2015-01-23 23:01:49 -0500 | 
|---|---|---|
| committer | Teddy Wing | 2015-01-23 23:10:14 -0500 | 
| commit | 60fd929be1bd4320859734812305500e70ab3812 (patch) | |
| tree | 0e7eaaa56d4479fd558bc98634bbcee269bd3fe3 /config | |
| parent | 1a8512ba164867f93aba4d3236f9c6861da3f64b (diff) | |
| download | Notes-angular-demo-60fd929be1bd4320859734812305500e70ab3812.tar.bz2 | |
config/application.rb: Add bower components dir to asset path
This ensures our Bower-installed files are accessible through the asset
pipeline.
Diffstat (limited to 'config')
| -rw-r--r-- | config/application.rb | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/config/application.rb b/config/application.rb index a38a5a7..99f3263 100644 --- a/config/application.rb +++ b/config/application.rb @@ -22,5 +22,7 @@ module AngularDemo      # Do not swallow errors in after_commit/after_rollback callbacks.      config.active_record.raise_in_transactional_callbacks = true +     +    config.assets.paths << Rails.root.join('vendor', 'assets', 'components')    end  end | 
