BigW Consortium Gitlab

  1. 20 Jan, 2017 4 commits
  2. 19 Jan, 2017 33 commits
  3. 17 Jan, 2017 3 commits
    • Update VERSION to 8.16.0-rc3 · 7a4f6f06
      Rémy Coutable authored
    • Merge branch 'switch-to-sassc' into 'master' · e7fdb1aa
      Robert Speicher authored
      Switch to sassc-rails
      
      Closes #18432
      
      See merge request !8556
    • Switch to sassc-rails · d5e996d1
      Richard Macklin authored
      Closes #18432
      
      This uses sassc to compile the application's SASS so it compiles faster.
      
      Without attempting to be very scientific here are some numbers I got:
      
      Using sassc-rails:
      
      ```
      [1] pry(main)> Benchmark.bm { |bm| bm.report { Rails.application.assets["application.css"] } }
             user     system      total        real
         1.430000   0.380000   1.810000 (  1.830753)
      ```
      
      Using sass-rails:
      ```
      [1] pry(main)> Benchmark.bm { |bm| bm.report { Rails.application.assets["application.css"] } }
             user     system      total        real
        12.320000   0.530000  12.850000 ( 12.909684)
      ```
      
      The result is faster page loads when changing CSS in development and
      faster precompilation.