Last active
January 4, 2016 20:39
-
-
Save pdxrod/8675675 to your computer and use it in GitHub Desktop.
Fix Compass and ZenTest issues in ror_ecommerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pulled commit f24b6d0 David Henner Jan 18 22:04:15 | |
RVM said use Ruby ruby-2.0.0-p353 - did so | |
bundle update caused two issues: | |
1. ZenTest wouldn't install because it needed RubyGems < 2.2.1 | |
2. Compass wouldn't install because branch 'rails4-hack' doesn't exist | |
Solution: | |
1. Comment out line | |
gem "ZenTest", '4.9.1'#, '4.6.2' | |
in Gemfile | |
2. Change Compass line in Gemfile to just say | |
gem 'compass-rails', git: 'https://github.com/Compass/compass-rails.git' | |
with no branch | |
After these two fixes, everything works |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks... I'll update ASAP... I'll add this to the readme also.