ruby - Bundler could not find compatible versions for gem "sass-rails" -
i new ruby on rails , have error when run bundle install new project. using rails 4.2.3 on mac osx yosemite
in gemfile: compass-rails (~> 2.0.4) ruby depends on sass-rails (<= 5.0.1) ruby sass-rails (5.0.3)
any idea on why got error?
just add version of sass-rails
gem gemfile. find string:
gem "sass-rails"
and replace the
gem "sass-rails", "5.0.1"
this error occured because of little old version of compass-rails
gem. can review line of gemspec see that's newer version of compass-rails
wouldn't raise exception (because of sass-rails 5.0.3
lower 5.1
)
Comments
Post a Comment