Rails/Compass/Sass 编译超级慢

Rails/Compass/Sass Compile Super Slow

我知道这个问题已经被提出了一千次了,我觉得我已经阅读了关于它的大多数其他帖子,但我似乎仍然无法弄清楚这个问题。

我刚开始在 Rails 上使用 Ruby,并试图在我的项目中使用 Compass/Sass/Suzy。它们都可以(大部分)工作,但在使用罗盘编译器时遇到了一些问题。

首先使用 bundle exec compass watch(有和没有 --poll)什么都不做。 (这是假设我理解这个命令的要点,它是即时重新编译的,我不必刷新页面来查看我的更改,但我可能是错的)

其次,当我在更改 .scss 文件后刷新页面时,编译需要 30-35 秒才能完成并重新加载页面。这是无法忍受的。我读到最新的 'compass-rails' 有一些问题,但大多数说这是几年前的帖子。最新的罗盘-rails 是否可以正常工作,或者是否存在导致此问题的常见问题?

因为我只是在学习,所以我只有一个 controller/view/scss 文件,所以我很肯定我没有任何依赖循环问题。

这是我当前设置项目的方式。 (我认为它设置正确,但也许有人可以指出我做错了什么。)

  1. 我创建了一个新的 rails 项目并生成了一个 'welcome' 控制器
  2. 修改了我的application.rb

application.rb

require_relative 'boot'

require 'rails/all'
require 'susy'
require 'compass'
require 'breakpoint'
require 'normalize-scss'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

module PersonalWeb
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.
  end
end
  1. 修改了我的 Gemfile

宝石文件

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.3.18', '< 0.5'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'susy'
gem 'compass-rails'
gem 'breakpoint'
gem 'normalize-scss'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platform: :mri
end

group :development do
  # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  gem 'web-console'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  1. 运行命令bundle
  2. 已将 application.css 重命名为 application.css.scss

application.css.scss

@import "compass";
@import "breakpoint";
@import "welcome.scss";
  1. 在我的 welcome.erb 和 welcome.scss 中分别添加了一些 HTML 和 sass。

作为进一步说明,我遇到了一个问题,即每个编译指南针都会抛出一个已弃用的警告。我遵循了似乎阻止它的建议 here。怀疑它涉及但为了防止我的无知妨碍我想我会提到它的解决方案。

编辑

我想我会把我的 welcome.scss 扔进去,以防万一我在那里做了一些愚蠢的事情。

welcome.scss

@import "normalize";
@import "partials/variables";
@import "partials/layout";
@import "partials/mixins";
@import "grids";

header {
  height: 100px;
  background: $blue;
  color: $white;
  margin-bottom: 10px;
  padding: 10px;
}

.wrapper {
  background: $white;
  margin: 0 auto;
  max-width: 900px;
}

nav {
  text-align: center;

  ul, li {
    padding: 0;
  }

  li {
    background: $gray;
  }

  a {
    text-decoration: none;
    color: $white;

    &:hover {
      color: $yellow;
    }
  }
}

.first-row {
  height: 100px;
  margin-bottom: 10px;
  padding: 10px;
}

.first-row .first {
  background: $yellow;
  height: 100%;
}

.first-row .second {
  height: 100%;
}

.first-row .second div {
  background: $orange;
  height: 100%;
}

.pic-gallery {
  div {
    background: $violet;
    height: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
}

.content-bar {
  div {
    background: $green;
    height: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
}

footer {
  height: 100px;
  background: $blue;
  color: $white;
  margin-top: 10px;
  padding: 10px;
  clear: both;
}

header {
  @include full;

  .logo {
    @include span(wide 1.75);
    @include border-radius(0px);
  }

  h1 {
    @include span(last 2);
    @include breakpoint((max-width 50em)){
      @include span(last 2);
    }
  }
}

.wrapper {
  @include container;
}

编辑 2 我想我应该提到我在 Windows 10.

当你在一个没有资产管道的基本项目或一些框架上使用指南针时,使用 compass watch 命令。它监视文件系统的更改并将您的 SASS 文件编译为 CSS。它可以与 livereloadx 一起使用,但这不是主要目的。

您不想将 compass watch 与 Rails 一起使用。 Rails 相反有一个内置的 assets pipeline 可以更好地完成工作。

如果您仍想使用指南针的其他功能,您应该使用 compass-rails gem。

1。将 gem 添加到 gem 文件

gem 'sass-rails'
gem 'compass-rails'

然后 运行 bundle 安装 gems.

2。设置您的 application.scss

如果您有 application.css 文件,请将其重命名为 application.scss。请注意,不应将其命名为 .css.scss。删除任何 sprockets 指令,这些指令是看起来像这样的注释:

#= require 'foo'

改为使用 SASS @import 指令:

@import "compass"

然后follow the steps in the readme设置susy等扩展。

尽量不要导入整个罗盘

而是只导入您想要的模块,即:

@import "compass/typography/links/link-colors"
  • 取自How can you speed up the Rails Asset Pipeline precompile process?