I just cant find a workarround for this, please help
my config.rb in location $PROJECT_HOME/assets/www/theming
dir = File.dirname('..Path_to_project_home..\assets\www\theming\config.rb')
load File.join(dir, '..', 'lib', 'touch', 'resources', 'themes')
sass_path = dir
css_path = dir
environment = :production
output_style = :compressed
this is my app.scss:
@import 'sencha-touch/default/all';
@include sencha-panel;
@include sencha-buttons;
@include sencha-toolbar;
@include sencha-list;
@include sencha-layout;
@include sencha-sheet;
@include sencha-msgbox;
in the console in the directory of the ‘sass_path’ I run
compass compile app.scss
but I get the following error:
File to import not found or unreadable: sencha-touch/default/all.
Please help, cant solve this.
I dont know why this is nowhere mentioned, maybe because it´s straight forward. I copied the
into my project:
as it is declared in the .join command in this line
after running
in the theming directory of the project again, it should work now.