File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
We all love working with Sass, but compilation can take quite a long time for larger
4
4
codebases. This gem integrates the C implementation of Sass,
5
- [ libsass ] ( https://github.com/sass/libsass ) , into the asset pipeline.
5
+ [ LibSass ] ( https://github.com/sass/libsass ) , into the asset pipeline.
6
6
7
7
In one larger project, this made compilation 4x faster:
8
8
@@ -25,9 +25,9 @@ This should essentially be a drop in alternative to [sass-rails](https://github.
25
25
__ Note: This is a new project, please report any issues you come across!__
26
26
27
27
28
- ## Libsass Compatibility With Ruby Sass
28
+ ## LibSass Compatibility With Ruby Sass
29
29
30
- For a look at the compatibility between Ruby Sass and Libsass , check this
30
+ For a look at the compatibility between Ruby Sass and LibSass , check this
31
31
[ compatibility chart] ( http://sass-compatibility.github.io/ ) out.
32
32
33
33
@@ -46,7 +46,7 @@ And then execute:
46
46
47
47
## Deployment to Heroku
48
48
49
- Due to Libsass compilation requirements, you upgrade to the
49
+ Due to LibSass compilation requirements, you must upgrade to the
50
50
[ Heroku Cedar-14 Stack] ( https://devcenter.heroku.com/articles/cedar-14-migration )
51
51
in order to successfully install this gem.
52
52
Original file line number Diff line number Diff line change @@ -16,19 +16,17 @@ namespace :tests do
16
16
]
17
17
18
18
gemfiles . each do |gemfile |
19
- desc "Run Tests against #{ gemfile } "
19
+ desc "Run tests against #{ gemfile } "
20
20
task gemfile do
21
- sh "BUNDLE_GEMFILE='gemfiles/#{ gemfile } .gemfile' bundle --quiet "
21
+ sh "BUNDLE_GEMFILE='gemfiles/#{ gemfile } .gemfile' bundle install "
22
22
sh "BUNDLE_GEMFILE='gemfiles/#{ gemfile } .gemfile' bundle exec rake test"
23
23
end
24
24
end
25
25
26
- desc "Run Tests against all ORMs "
26
+ desc "Run tests against all common asset pipeline setups "
27
27
task :all do
28
28
gemfiles . each do |gemfile |
29
- puts "Running Tests against #{ gemfile } "
30
- sh "BUNDLE_GEMFILE='gemfiles/#{ gemfile } .gemfile' bundle --quiet"
31
- sh "BUNDLE_GEMFILE='gemfiles/#{ gemfile } .gemfile' bundle exec rake test"
29
+ Rake ::Task [ "tests:#{ gemfile } " ] . invoke
32
30
end
33
31
end
34
32
end
You can’t perform that action at this time.
0 commit comments