This file is indexed.

/usr/lib/ruby/vendor_ruby/merb-haml/merbtasks.rb is in ruby-merb-haml 1.1.3-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
namespace :haml do
  desc "Compiles all sass files into CSS"
  task :compile_sass do
    require 'sass'
    puts "*** Updating stylesheets"
    Sass::Plugin.options = Merb::Config[:sass] if Merb::Config[:sass]
    Sass::Plugin.update_stylesheets
    puts "*** Done"      
  end
end