user2805193
user2805193

Reputation:

No application integration exists for rails. Compass and rails 4

I started a rails 4 project and added the following gem (supposedly, it has rails 4 support)

gem 'compass-rails', '~> 2.0.alpha.0'

However, after bundle install and $ bundle exec compass init I keep getting

No application integration exists for rails.

Anyone knows why ?

Thanks,

Upvotes: 1

Views: 1016

Answers (2)

mottz
mottz

Reputation: 1

Remove project_type = :rails from your config file.

Upvotes: 0

user3170356
user3170356

Reputation: 66

I get the same error with compass-rails v1.1.3 and rails 4, when running "bundle exec compass init rails", but when I run "bundle exec compass init" (omitting "rails") it works fine for me. The version of compass-rails you are using has been yanked since last July (see here: http://rubygems.org/gems/compass-rails/versions/2.0.alpha.0).

Upvotes: 2

Related Questions