diff options
author | jessib <jessib@riseup.net> | 2013-11-18 09:57:02 -0800 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-11-18 09:57:02 -0800 |
commit | ab2e014df85b7f931a717ed49d9b9678f6f1c5a0 (patch) | |
tree | 568a7e8cb47349431553ec5667dddcaaf57d206b /config/initializers | |
parent | 3104677b8d96cd4a118022267abc7bed818f8ddd (diff) | |
parent | 7a107e0d38271e7103d3494e06d52f3434022f22 (diff) |
Merge branch 'develop' into feature/rename_ticket_title_to_subject
Diffstat (limited to 'config/initializers')
-rw-r--r-- | config/initializers/customization.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/config/initializers/customization.rb b/config/initializers/customization.rb new file mode 100644 index 0000000..bc9c834 --- /dev/null +++ b/config/initializers/customization.rb @@ -0,0 +1,36 @@ +# +# When deploying, common customizations can be dropped in config/customizations. This initializer makes this work. +# +customization_directory = "#{Rails.root}/config/customization" + +# +# Set customization views as the first view path +# +# Rails.application.config.paths['app/views'].unshift "config/customization/views" +# (For some reason, this does not work here. See application.rb for where this is actually called.) + +# +# Set customization stylesheets as the first asset path +# +# Some notes: +# +# * This cannot go in application.rb, as far as I can tell. In application.rb, the default paths +# haven't been loaded yet, so the path we add will always end up at the end unless we add it here. +# +# * For this to work, config.assets.initialize_on_precompile MUST be set to true, otherwise +# this initializer will never get called in production mode when the assets are precompiled. +# +Rails.application.config.assets.paths.unshift "#{customization_directory}/stylesheets" + +# +# Copy files to public +# +if !defined?(RAKE) && Dir.exists?("#{customization_directory}/public") + require 'fileutils' + FileUtils.cp_r("#{customization_directory}/public/.", "#{Rails.root}/public") +end + +# +# Add I18n path +# +Rails.application.config.i18n.load_path += Dir["#{customization_directory}/locales/*.{rb,yml,yaml}"] |