diff options
| author | Louise Crow <louise.crow@gmail.com> | 2014-04-17 15:09:26 +0100 |
|---|---|---|
| committer | Louise Crow <louise.crow@gmail.com> | 2014-04-24 15:38:08 +0100 |
| commit | bd164ea3b317e9a69a103349560844bfa7105a0f (patch) | |
| tree | 619ded23c36c9e6e25939e8a540e4e4b2741a587 | |
| parent | 59884fdf94434920f5cafd9adc4a6e7918656ca9 (diff) | |
Add foundation to the sass load paths
So that we can import it from a subdirectory
| -rw-r--r-- | config/application.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb index 1cff3a125..923542607 100644 --- a/config/application.rb +++ b/config/application.rb @@ -113,5 +113,10 @@ module Alaveteli 'ie6.css', 'ie7.css'] + config.sass.load_paths += [ + "#{Gem.loaded_specs['foundation-rails'].full_gem_path}/vendor/assets/stylesheets/foundation/components", + "#{Gem.loaded_specs['foundation-rails'].full_gem_path}/vendor/assets/stylesheets/foundation/" + ] + end end |
