I'm trying to run Forge on OS X Yosemite, but I'm encountering several problems:
1) Installing the latest release requires a version of therubyracer that is too old to compile on Yosemite. I had to install from the master branch.
2) forge watch starts Guard like it should, but it hangs on exit. I have to hit ^Z and kill it by process ID in the terminal.
3) None of the Blueprint library files for Compass & Sass are found. The stylesheets cannot compile unless I remove all references to Blueprint.
Is there something I'm forgetting to install or to prepare for me to have all these problems?
Additionally, I'm new to Forge. I have all my WordPress files in a directory which I sync back and forth between local, staging, and production. It would be nice if there was a way to make Forge understand I want files to be watched and stored directly in the theme directory. I tried linking .forge/build to the theme directory in wp-content rather than the other way around, but that directory is erased every time I end forge watch.
For point 3 above, I added gem 'compass-blueprint' to Gemfile, then require 'compass-blueprint' in config.rb. All Blueprint requirements in SCSS files work now.
Hi,
I'm trying to run Forge on OS X Yosemite, but I'm encountering several problems:
1) Installing the latest release requires a version of therubyracer that is too old to compile on Yosemite. I had to install from the master branch. 2)
forge watch
starts Guard like it should, but it hangs on exit. I have to hit^Z
and kill it by process ID in the terminal. 3) None of the Blueprint library files for Compass & Sass are found. The stylesheets cannot compile unless I remove all references to Blueprint.Is there something I'm forgetting to install or to prepare for me to have all these problems?
Additionally, I'm new to Forge. I have all my WordPress files in a directory which I sync back and forth between local, staging, and production. It would be nice if there was a way to make Forge understand I want files to be watched and stored directly in the theme directory. I tried linking
.forge/build
to the theme directory inwp-content
rather than the other way around, but that directory is erased every time I endforge watch
.