11 lines
371 B
Ruby
11 lines
371 B
Ruby
|
# Get the directory that this configuration file exists in
|
||
|
dir = File.dirname(__FILE__)
|
||
|
|
||
|
# Load the sencha-touch framework automatically.
|
||
|
load File.join(dir, '..', '..', '..', '..', '..', 'vendor', 'touch', 'resources', 'themes')
|
||
|
|
||
|
# Compass configurations
|
||
|
sass_path = dir
|
||
|
css_path = File.join(dir, "..", "css")
|
||
|
environment = :production
|
||
|
output_style = :compressed
|