Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/sentry/helper.rb

Instance Method Summary collapse

Instance Method Details

#to_urlObject



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