Class: KDL::Types::URLReference
- Inherits:
-
Value::Custom
- Object
- Value
- Value::Custom
- KDL::Types::URLReference
- Defined in:
- lib/kdl/types/url.rb
Direct Known Subclasses
Constant Summary
Constants inherited from Value
Instance Attribute Summary
Attributes inherited from Value::Custom
Attributes inherited from Value
Class Method Summary collapse
Methods inherited from Value::Custom
Methods inherited from Value
#==, #as_type, from, #initialize, #inspect, #method_missing, #respond_to_missing?, #stringify_value, #to_s, #to_v2, #version
Constructor Details
This class inherits a constructor from KDL::Value
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class KDL::Value
Class Method Details
.call(value, type = 'url-reference') ⇒ Object
6 7 8 9 10 11 |
# File 'lib/kdl/types/url.rb', line 6 def self.call(value, type = 'url-reference') return nil unless value.is_a? ::KDL::Value::String uri = parse_url(value.value) new(uri, type: type) end |
.parse_url(string) ⇒ Object
13 14 15 |
# File 'lib/kdl/types/url.rb', line 13 def self.parse_url(string) URI.parse(string) end |