summaryrefslogtreecommitdiff
path: root/lib/rss/utils.rb
blob: 1c30ae74bc239107224c697190d984d3d6420ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module RSS

  module Utils

    def get_file_and_line_from_caller(i=0)
      file, line, = caller[i].split(':')
      [file, line.to_i]
    end

    def html_escape(s)
      s.to_s.gsub(/&/, "&amp;").gsub(/\"/, "&quot;").gsub(/>/, "&gt;").gsub(/</, "&lt;")
    end
    alias h html_escape
    
  end

end