I have a rails 4.2 app and trying to use this gem but keep running into the issue of "LoadError - cannot load such file -- sass", any idea what's could be the problem?
Gemfile
source 'https://rubygems.org'
gem 'rails', '4.2' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'mysql2', '~>0.3.18' # Use mysql as the database for Active Record
gem "recaptcha" # Add reCAPTCHA verification on signup page. https://github.com/ambethia/recaptcha
gem 'rubyzip' #Use in unzipping zipped files downloaded, especially for Avantio
gem 'sprockets-rails', '2.3.3' #For rake assets:precompile rake assets:clean rake assets:clobber
gem 'rails_config', '0.4.2' #For settings.yml
gem 'devise' #Used in auth
gem 'braintree', '~> 2.100.0'
#Background jobs
gem 'sidetiq', '0.7.0'
gem 'sidekiq-middleware', '0.3.0'
#New background jobs
gem 'sidekiq-scheduler'
gem 'attentive_sidekiq'
gem 'sidekiq_monitor'
gem 'redis'
gem 'redis-namespace'
gem 'redis-rails'
gem 'prawn' # For billing PDF
gem 'activerecord-session_store' #Settings user's session, check session_store.rb
gem 'activerecord-import', '0.27.0' #For batch import
gem 'bunny', '2.15.0' #For sequential queue (for new listings)
gem 'omniauth-bookingsync', '0.5.0'
gem 'bookingsync-api'
gem 'omniauth-myvr', '1.0.0'
gem 'savon', '2.5.1' #Reading savon SOAP
gem 'geocoder', '1.6.1'
gem 'amazing_print'
gem 'net_tcp_client'
gem "syslog_protocol"
gem 'rails_semantic_logger'
gem 'oj', '3.10.8'
group :production do
gem 'rack', '1.6.5'
gem 'uglifier', '>= 4.2.0'# Use Uglifier as compressor for JavaScript assets
gem 'turbolinks' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
end
group :development, :test do
gem 'byebug'
gem 'better_errors'
gem 'capistrano', '~> 3.6'
gem 'capistrano-rails', '~> 1.2'
gem 'capistrano-rvm'
gem 'puma'
gem 'unicorn'
gem 'unicorn-worker-killer'
end
Hey,
I have a rails 4.2 app and trying to use this gem but keep running into the issue of "LoadError - cannot load such file -- sass", any idea what's could be the problem?
Gemfile
The error is