0

运行此命令后

compass install bootstrap

我收到这条消息:

identical sass/styles.scss

...

identical javascripts/bootstrap-typeahead.js
NoMethodError on line ["32"] of /Users/xxx/.rvm/gems/ruby-1.9.3-p327@favy/gems/sass-rails-3.2.6/lib/sass/rails/helpers.rb: undefined method `[]' for nil:NilClass
Run with --trace to see the full backtrace

在 /Users/xxx/.rvm/gems/ruby-1.9.3-p327@favy/gems/sass-rails-3.2.6/lib/sass/rails/helpers.rb

 31     def resolver
 32       options[:custom][:resolver]
 33     end

我尝试了一种解决方法-> https://gist.github.com/castus/4044953

def resolver
  if ::Rails::env == "production"
    options[:custom][:resolver]
  else
    Resolver.new(CompassRails.context)
  end
end

&仍然没有运气:)

我的 config/compass.rb 中有这些东西

require 'bootstrap-sass'

还有我的 Gemfile

source 'http://rubygems.org'

gem "paperclip"
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'compass-rails'
gem 'bootswatch-rails'

gem 'gmaps4rails'

gem 'rails', '3.2.13'
gem 'activerecord-postgresql-adapter'
gem 'devise'
gem 'sass-rails', '~> 3.2.3'
gem "haml"
gem "haml-rails"

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer', :platforms => :ruby

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'debugger'
4

1 回答 1

1

如果您使用 Rails 和 Bootstrap-sass,则根本不需要“指南针”。Compass 适用于不使用 Rails 的网站。

以下是安装和引导 sass 的步骤

  1. 将其添加到 Gemfile 并bundle install

  2. 将 application.css 重命名为 application.css.scss

  3. 删除application.css.scss中的所有注释,留空

  4. 添加@import bootstrap

你完成了!将其视为普通的 css 文件并使用 @import 做任何你喜欢的事情。但没有更多require的评论!

于 2013-04-16T03:05:43.297 回答