I try to install self-tuning gems on my Rails 3.2 application, but run into this error when I call compass install bootstrap :
There is no such structure: "bootstrap"
I have a gem installed in my gemfile:
gem 'compass', '~> 0.12.2' group :assets do ... gem 'sass-rails', '~> 3.2.4' gem 'compass-rails', '~> 1.0.3' gem 'bootstrap-sass', '~> 2.1.1.0' end
I put the import statement in the application.css.scss file:
@import "bootstrap";
In my application.js application, I downloaded the boot file:
//= require jquery //= require jquery_ujs //= require bootstrap ...
and I needed to download the config.ru file:
require 'bootstrap-sass' require ::File.expand_path('../config/environment', __FILE__) run MYAPP::Application
Can anyone understand what might be the problem, or have run into the same problem?
Here is git for bootstrap-sass: https://github.com/thomas-mcdonald/bootstrap-sass.git
source share