keydown
keydown copied to clipboard
File to import not found or unreadable: compass/css3. (Sass::SyntaxError)
Getting the error "File to import not found or unreadable: compass/css3. (Sass::SyntaxError)" running the command "keydown slides slides.md".
Just installed keydown, generated a new project and the the "keydown slides slides.md" command.
Any ideas what's wrong?
OS Mac 10.9.2 ruby 2.0.0p451 (2014-02-24 revision 45167) [universal.x86_64-darwin13] compass (1.0.0.alpha.19) compass-core (1.0.0.alpha.19) compass-import-once (1.0.4)
Gary
same here. :(
I'm getting the same error
I suspect that this would be fixed by having the compass dependency be set to 0.13.alpha.4 as it seems the issue is a hard coded path to css3 (and some deprecated box thing).
I uninstalled compass 1.0.1 and installed compass 0.12.7 and all is well.
Setting the dependency is a better way. Thanks Andy.
Thanks @gforghetti :+1:
I used the following Gemfile:
source 'https://rubygems.org'
gem 'keydown'
gem 'compass', '0.12.7'
and then I was able to make it work:
bundle
bundle exec keydown slides slides.md
Still broken.
Uninstall compass and install compass 0.12.7
sudo gem uninstall compass sudo gem install compass -v 0.12.7
Thanks! @samuelbarbosaa