Search code examples
rubyrubygemscompass-sass

error on compass watch


Below is the error that I get on executing compass watch -

LoadError on line ["36"] of /home/murtaza/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb: cannot load such file -- ceaser-easing

How do I remedy it?


Solution

  • It was due to plugins that had to be installed.

    Adding the content as requested -

    # Require any additional compass plugins here.
    
    require "ceaser-easing"
    require "grid-coordinates"
    require "compass_twitter_bootstrap"
    
    # Set this to the root of your project when deployed:
    http_path = "/"
    css_dir = "css"
    sass_dir = "templ/sass"
    images_dir = "images"
    javascripts_dir = "js"
    
    # You can select your preferred output style here (can be overridden via the command line):
    # output_style = :expanded or :nested or :compact or :compressed
    
    # To enable relative paths to assets via compass helper functions. Uncomment:
    # relative_assets = true
    
    # To disable debugging comments that display the original location of your selectors. Uncomment:
    # line_comments = false
    
    preferred_syntax = :sass