Module: Dommy::Resources::Pathing

Defined in:
lib/dommy/resources.rb

Overview

Common helpers for the built-in adapters.

Class Method Summary collapse

Class Method Details

.path_of(url) ⇒ Object



106
107
108
109
110
# File 'lib/dommy/resources.rb', line 106

def path_of(url)
  URI.parse(url.to_s).path
rescue URI::InvalidURIError
  url.to_s
end