b13fd43a2e
Also, don't ever muck with the load paths or rubygems without first trying to require the library without doing so.
7 lines
82 B
Ruby
7 lines
82 B
Ruby
begin
|
|
require 'sass'
|
|
rescue LoadError
|
|
require 'rubygems'
|
|
require 'sass'
|
|
end
|