Sha256: 970e87fb5d78825f4568cfd944b0b4b4f5c965473db1434f49800074bdb735c6
Contents?: true
Size: 1.41 KB
Versions: 4
Compression:
Stored size: 1.41 KB
Contents
class Updater module Scss def update_scss_assets log_status 'Updating scss...' save_to = @save_to[:scss] contents = {} bootstrap_scss_files = get_paths_by_type('scss', /\.scss$/) read_files('scss', bootstrap_scss_files).each do |name, file| contents[name] = file save_file("#{save_to}/#{name}", file) end log_processed "#{bootstrap_scss_files * ' '}" log_status 'Updating scss main files' %w(bootstrap bootstrap-flex bootstrap-grid bootstrap-reboot).each do |name| # Compass treats non-partials as targets to copy into the main project, so make them partials. # Also move them up a level to clearly indicate entry points. from = "#{save_to}/#{name}.scss" to = "#{save_to}/../_#{name}.scss" FileUtils.mv from, to # As we moved the files, adjust imports accordingly (except for bootstrap-flex that imports the main bootstrap). unless 'bootstrap-flex' == name File.write to, File.read(to).gsub(/ "/, ' "bootstrap/') end end log_status 'Generating variable template file' save_file 'templates/project/_bootstrap-variables.scss', "// Override Bootstrap variables here (defaults from bootstrap v#{upstream_version}):\n\n" + File.read("#{save_to}/_variables.scss").lines[1..-1].join.gsub(/^(?=\$|\)|[ ]{2})/, '// ').gsub(/ !default/, '') end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
bootstrap-4.0.0.alpha3.1 | tasks/updater/scss.rb |
bootstrap-4.0.0.alpha3 | tasks/updater/scss.rb |
bootstrap-4.0.0.alpha2 | tasks/updater/scss.rb |
bootstrap-4.0.0.alpha1 | tasks/updater/scss.rb |