Module: ERB::Util
- Defined in:
- lib/framework/erb.rb
Overview
A utility module for conversion routines, often handy in HTML generation.
Class Method Summary collapse
-
.h ⇒ Object
A utility method for escaping HTML tag characters in s.
-
.html_escape(s) ⇒ Object
A utility method for escaping HTML tag characters in s.
-
.u ⇒ Object
A utility method for encoding the String s as a URL.
-
.url_encode(s) ⇒ Object
A utility method for encoding the String s as a URL.
Class Method Details
.h ⇒ Object
A utility method for escaping HTML tag characters in s.
require “erb” include ERB::Util puts html_escape(“is a > 0 & a < 10?”)
Generates
is a > 0 & a < 10?
864 865 866 |
# File 'lib/framework/erb.rb', line 864 def html_escape(s) s.to_s.gsub(/&/, "&").gsub(/\"/, """).gsub(/>/, ">").gsub(/</, "<") end |
.html_escape(s) ⇒ Object
A utility method for escaping HTML tag characters in s.
require “erb” include ERB::Util puts html_escape(“is a > 0 & a < 10?”)
Generates
is a > 0 & a < 10?
861 862 863 |
# File 'lib/framework/erb.rb', line 861 def html_escape(s) s.to_s.gsub(/&/, "&").gsub(/\"/, """).gsub(/>/, ">").gsub(/</, "<") end |
.u ⇒ Object
A utility method for encoding the String s as a URL.
require “erb” include ERB::Util puts url_encode(“Programming Ruby: The Pragmatic Programmer’s Guide”)
Generates
Programming%20Ruby%3A%20%20The%20Pragmatic%20Programmer%27s%20Guide
885 886 887 888 889 |
# File 'lib/framework/erb.rb', line 885 def url_encode(s) s.to_s.dup.force_encoding("ASCII-8BIT").gsub(/[^a-zA-Z0-9_\-.]/n) { sprintf("%%%02X", $&.unpack("C")[0]) } end |
.url_encode(s) ⇒ Object
A utility method for encoding the String s as a URL.
require “erb” include ERB::Util puts url_encode(“Programming Ruby: The Pragmatic Programmer’s Guide”)
Generates
Programming%20Ruby%3A%20%20The%20Pragmatic%20Programmer%27s%20Guide
880 881 882 883 884 |
# File 'lib/framework/erb.rb', line 880 def url_encode(s) s.to_s.dup.force_encoding("ASCII-8BIT").gsub(/[^a-zA-Z0-9_\-.]/n) { sprintf("%%%02X", $&.unpack("C")[0]) } end |