Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/sentry/helper.rb
Instance Method Summary collapse
Instance Method Details
#to_url ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/sentry/helper.rb', line 4 def to_url unless self[/\Ahttp:\/\//] || self[/\Ahttps:\/\//] self.sub! self, "http://#{self}" else self end end |