This file is indexed.

/usr/lib/ruby/1.8/markaby.rb is in libmarkaby-ruby1.8 0.5-1.

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
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# = About lib/markaby.rb
#
# By requiring <tt>lib/markaby</tt>, you can load Markaby's dependency (the Builder library,)
# as well as the full set of Markaby classes.
#
# For a full list of features and instructions, see the README.

# Markaby is a module containing all of the great Markaby classes that
# do such an excellent job.
# 
# * Markaby::Builder: the class for actually calling the Ruby methods
#   which write the HTML.
# * Markaby::CSSProxy: a class which adds element classes and IDs to
#   elements when used within Markaby::Builder.
# * Markaby::MetAid: metaprogramming helper methods.
# * Markaby::Tags: lists the roles of various XHTML tags to help Builder
#   use these tags as they are intended.
# * Markaby::Template: a class for hooking Markaby into Rails as a
#   proper templating language.
module Markaby
  VERSION = '0.5'

  class InvalidXhtmlError < Exception; end
end

unless defined?(Builder)
  require 'builder'
end

require 'markaby/builder'
require 'markaby/cssproxy'
require 'markaby/metaid'
require 'markaby/template'