2016-08-14 5 views
1

Das macht mich verrückt - Änderungen an CSS auf meiner Rails-Site nur aktualisieren, wenn ich rake assets:precompile laufen lasse.Assets, die nicht kompiliert werden

Weiß jemand, wie man das behebt, so werden Assets kompiliert, wenn sie geändert werden?

Ich habe das Gefühl, das Problem in dieser config/Umgebungen/development.rb Datei ist:

Rails.application.configure do 
    # Settings specified here will take precedence over those in config/application.rb. 
    config.assets.compile = true 
    # In the development environment your application's code is reloaded on 
    # every request. This slows down response time but is perfect for development 
    # since you don't have to restart the web server when you make code changes. 
    config.cache_classes = false 

    # Do not eager load code on boot. 
    config.eager_load = false 

    # Show full error reports and disable caching. 
    config.consider_all_requests_local  = true 
    config.action_controller.perform_caching = false 

    # Care if the mailer can't send. 
    config.action_mailer.raise_delivery_errors = true 

    # Print deprecation notices to the Rails logger. 
    config.active_support.deprecation  = :log 
    config.action_mailer.delivery_method  = :smtp 
    config.action_mailer.perform_deliveries = true 
    config.action_mailer.default_url_options = { :host => "http://localhost:3000/" } 
    # SMTP settings for gmail 
    config.action_mailer.smtp_settings = { 
    address:    'smtp.gmail.com', 
    port:     587, 
    domain:    'gmail.com', 
    user_name:   ENV['gmail_username'], 
    password:    ENV['gmail_password'], 
    authentication:  'plain', 
    enable_starttls_auto: true 
    } 

    # Raise an error on page load if there are pending migrations. 
    config.active_record.migration_error = :page_load 

    # Debug mode disables concatenation and preprocessing of assets. 
    # This option may cause significant delays in view rendering with a large 
    # number of complex assets. 
    config.assets.debug = true 

    # Asset digests allow you to set far-future HTTP expiration dates on all assets, 
    # yet still be able to expire them through the digest params. 
    config.assets.digest = true 

    # Adds additional error checking when serving assets at runtime. 
    # Checks for improperly declared sprockets dependencies. 
    # Raises helpful error messages. 
    config.assets.raise_runtime_errors = true 

    # Raises error for missing translations 
    # config.action_view.raise_on_missing_translations = true 
end 

Hier ist die Spitze von meinem Vermögen/Stylesheets/application.css Datei:

/* 
* This is a manifest file that'll be compiled into application.css, which will include all the files 
* listed below. 
* 
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. 
* 
* You're free to add application wide styles to this file and they'll appear at the bottom of the 
* compiled file so the styles you add here take precedence over styles defined in any styles 
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new 
* file per style scope. 
* 
*= require_tree . 
*= require_self 
*/ 

Neben der Oberseite application.js:

// This is a manifest file that'll be compiled into application.js, which will include all the files 
// listed below. 
// 
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. 
// 
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 
// compiled file. 
// 
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details 
// about supported directives. 
// 
//= require jquery 
//= require jquery_ujs 
//= require_tree . 

Edit: ich sollte hinzufügen, dass dies wurde nur ein Problem, wenn ich remov ed bootstrap ...

+0

Ich denke, alles ist gut in der Umgebung/development.rb Datei, die Sie gepostet haben. Wie sehen Ihre app/assets/stylesheets/application.css und app/assets/javascripts/application.js Dateien aus? – kcdragon

+2

Ihr Problem liegt im Entwicklungsmodus, oder? Hast du 'rake assets: clobber' versucht oder den Ordner' public/assets' von Hand gelöscht? Wenn ich mich richtig erinnere, bedient rails zuerst vorkompilierte Versionen, bevor er direkt in die Assets schaut. – slowjack2k

+0

was @ slowjack2k sagt! – phoet

Antwort

0

Um das Problem zu lösen: siehe Kommentar oben.

Verwandte Themen