class WCC::Styles::Engine
Private Instance Methods
asset_paths(root)
click to toggle source
# File lib/wcc/styles/engine.rb, line 24 def asset_paths(root) %w(images javascripts stylesheets).collect do |type| project_path(File.join(root, type)) end end
project_path(relative_path)
click to toggle source
# File lib/wcc/styles/engine.rb, line 30 def project_path(relative_path) File.join(WCC::Styles::PROJECT_ROOT, relative_path) end