7

假设我想为开发设置嵌套样式并为生产设置压缩。Compass 配置文件中只有一个选项:

output_style = :compact # or :nested, :expanded, :compressed
4

2 回答 2

7

看起来这很容易:

output_style = RAILS_ENV == "production" ? :compressed : :nested

为了检查它,我在不同的环境中运行了这个 rake 任务(在运行这个任务之前我必须更改 sass 源):

namespace :sass do
  desc 'Updates stylesheets if necessary from their Sass templates.'
  task :update => :environment do
    Sass::Plugin.update_stylesheets
  end
end

您可以将此任务放在 lib/tasks/sass.rake 中。

否则,我在 Capistrano deploy.rb 中运行此任务,以在部署期间自动更新生产中的样式表:

after 'deploy:restart', 'sass:update'

namespace :sass do
  desc 'Updates the stylesheets generated by Sass'
  task :update, :roles => :app do
    invoke_command "cd #{current_release}; rake sass:update RAILS_ENV=production"
  end
end
于 2010-03-05T11:35:27.133 回答
6

除了 Voldy 的回答之外,我还通过创建一个名为 sass_config 的初始化程序并将其放入其中解决了这个问题:

Sass::Plugin.options[:style] = case RAILS_ENV
  when 'production' then :compressed
  when 'staging' then :compact
  when 'development' then :expanded
  else
    :nested
end
于 2010-08-04T13:56:03.380 回答