Skip to content

Instantly share code, notes, and snippets.

View tgecho's full-sized avatar
🚧
Work In Progress

Erik Simmler tgecho

🚧
Work In Progress
View GitHub Profile
@tgecho
tgecho / config.rb
Created December 9, 2011 18:02
Add all static/sass under all installed python packages to compass import paths
pythonpath = eval(`python -c 'import sys; print sys.path'`)
additional_import_paths = []
for path in pythonpath
path << '/*/static/sass'
for dir in Dir.glob(path)
additional_import_paths << dir
end
end
puts 'additional_import_paths: ', additional_import_paths