This fixes a bug in ruby 1.8.7.

This commit is contained in:
Chris Eppstein 2009-10-21 17:59:51 -07:00
parent 190c96872b
commit 964304caa4

View File

@ -9,7 +9,9 @@ module Compass::Exec
opts.parse!(arguments) opts.parse!(arguments)
end end
def opts def opts
OptionParser.new(&method(:set_options)) OptionParser.new do |opts|
self.set_options(opts)
end
end end
def set_options(opts) def set_options(opts)