-
19 Nov 2012 11:09 AM #21
Figured it out yet?
Figured it out yet?
Hey master_obiwan,
Was going to see if you figured this out. If you haven't, here are my tips:
Whenever it says it can't find something, find where that folder *actually* is, and copy and paste the folder where it is expecting it. After 3 or so folder copies, I was able to get it straightened out. If you would like really detailed instructions, let me know - right now, I'm so sick of looking at the folders, I don't feel like doing it. I will later!
Andrew
-
19 Nov 2012 11:10 AM #22
Also, as an aside, you may need to do numerous more copy/pastes of folders - I excluded a number of things from the original .scss file, so that may have meant that I didn't need to copy more folders they would've used.
-
6 Dec 2012 12:58 AM #23
Thanks WonderWhit. I had the same problem. Nothing seemed to fix it. After reading your post, I ran "gem install compass" again inside my project folder. And it worked like charm. Thanks again!
-
19 Dec 2012 9:27 AM #24
I'm running sencha touch 2.1.0
these are my paths:
Attachment 40883
C:\QS\touch\resources\themes\stylesheets\sencha-touch\default
config.rb
app.scssCode:# Get the directory that this configuration file exists indir = File.dirname(__FILE__) # Load the sencha-touch framework automatically. load File.join(dir, '..', 'touch', 'resources', 'themes', 'stylesheets', 'sencha-touch', 'default') # Compass configurations sass_path = dir css_path = File.join(dir, "..", "resources", "css") # Require any additional compass plugins here. images_dir = File.join(dir, "..", "touch", "resources", "images") output_style = :compressed environment = :production
Code:@import '..\touch\resources\themes\stylesheets\sencha-touch\default';
-
19 Dec 2012 10:17 AM #25
My old post got deleted somehow...
I'm running sencha touch 2.1.0
these are my paths:
path.png
C:\QS\touch\resources\themes\stylesheets\sencha-touch\default
config.rb
app.scssCode:# Get the directory that this configuration file exists indir = File.dirname(__FILE__) # Load the sencha-touch framework automatically. load File.join(dir, '..', 'touch', 'resources', 'themes', 'stylesheets', 'sencha-touch', 'default') # Compass configurations sass_path = dir css_path = File.join(dir, "..", "resources", "css") # Require any additional compass plugins here. images_dir = File.join(dir, "..", "touch", "resources", "images") output_style = :compressed environment = :production
Code:@import '..\touch\resources\themes\stylesheets\sencha-touch\default';
Thanks!
FIXED
[CODE]# Load the sencha-touch framework automatically.load File.join(dir, '..', '..', 'touch', 'resources', 'themes')[/CODELast edited by bashir26; 19 Dec 2012 at 1:02 PM. Reason: fixed my issue. I wrote in the fix.
-
11 Feb 2013 10:25 AM #26
Hi
Hi
I am using Sencha 2.1.1 and Sencha Cmd v3.0.2.288 ( Latest ) on mac.
1. Create a new app, sencha generate app test test
2. Navigate to cd test/resources/sass
3. compass compile
ERROR I AM GETTING
error app.scss (Line 3 of _core.scss: File to import not found or unreadable: blueprint/typography.
Sass::SyntaxError on line 3 of /Library/WebServer/Documents/sencha2.1.1/touch-2.1.1/test/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss: File to import not found or unreadable: blueprint/typography.
Any help is greatly appreciated. Spent like 10 hours but no clue.
THanks, Nag
-
12 Feb 2013 2:54 AM #27
Hi Nag,
I had the same problem. Problem was that I installed the latest version on my Mac using the command:
This installed by default the version: "compass-0.13.alpha.2" which doesn't include the blueprint framework. I had to downgrade my compass to latest stable version which is: "compass-0.12.2"Code:gem install compass --pre
Do this:
1. Install last stable version of compass which is 0.12.2 which has the blueprint framework:
Code:sudo gem install compass --version 0.12.2
2. Then uninstall the compass-0.13.alpha.2
It will present you with list of all of the compass versions you have installed. Type order number of one you want to uninstall and you are done.Code:sudo gem uninstall compass
Then check what version you are running by:
Code:compass version
-
14 Feb 2013 2:25 PM #28
Thanks gypsie, I had the same problem and your solution worked for me.
-
16 Feb 2013 8:34 AM #29
THANKS THANKS
THANKS THANKS
THANKS THANKS THANKS gypsie
Worked like a charm.
I owe you a treat. Let me me know when you are in the bay area.
Thanks, Nag
-
5 Mar 2013 2:32 AM #30
Thanks Gypsie!! You solved my very annoying issue
I`m from Holland!


Reply With Quote