summaryrefslogtreecommitdiff
path: root/lib/rss/utils.rb
blob: ae6f69bcf190a4530a490b74f3f7d9a1d36e66ae (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