anjlab / bootstrap-rails

Twitter Bootstrap CSS (with Sass flavour) and JS toolkits for Rails 3 projects
https://github.com/anjlab/bootstrap-rails
729 stars 96 forks source link

Rails 3.2 Undefined mixin 'font-sans-serif' #14

Closed masterkain closed 12 years ago

masterkain commented 12 years ago

This line https://github.com/anjlab/bootstrap-rails/blob/master/vendor/assets/stylesheets/scaffolding.scss#L13 currently is giving me troubles:

Error compiling asset application.css:
Sass::SyntaxError: Undefined mixin 'font-sans-serif'.

Gemfile:

gem 'rails', '~> 3.2.0'

group :assets do
  gem 'sass-rails',   '~> 3.2.3' # :git => 'git://github.com/rails/sass-rails.git',   :branch => '3-2-stable'
  gem 'coffee-rails', '~> 3.2.1' # :git => 'git://github.com/rails/coffee-rails.git', :branch => '3-2-stable'
  gem 'uglifier', '>= 1.0.3'

  gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails', :git => 'git://github.com/anjlab/bootstrap-rails.git'
end
masterkain commented 12 years ago

Might be related: https://github.com/rails/rails/issues/4648

masterkain commented 12 years ago

Apparently it was a coworker fault for having included a mixin name already in use.