Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/cobweb_crawler.rb
Overview
Monkey patch into String a starts_with method
Instance Method Summary collapse
-
#cobweb_starts_with?(val) ⇒ Boolean
Monkey patch into String a starts_with method.
Instance Method Details
#cobweb_starts_with?(val) ⇒ Boolean
Monkey patch into String a starts_with method
128 129 130 131 132 133 134 |
# File 'lib/cobweb_crawler.rb', line 128 def cobweb_starts_with?(val) if self.length >= val.length self[0..val.length-1] == val else false end end |