Skip to content

Instantly share code, notes, and snippets.

@pdxrod
Last active January 4, 2016 20:39
Show Gist options
  • Save pdxrod/8675675 to your computer and use it in GitHub Desktop.
Save pdxrod/8675675 to your computer and use it in GitHub Desktop.
Fix Compass and ZenTest issues in ror_ecommerce
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
@drhenner
Copy link

Thanks... I'll update ASAP... I'll add this to the readme also.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment