Class: NSURL

Inherits:
Object
  • Object
show all
Defined in:
lib/jiraSOAP/macruby_bonuses.rb

Overview

In the case of MacRuby, we extend NSURL to behave enough like a URI::HTTP object that they can be interchanged.

Instance Method Summary collapse

Instance Method Details

#to_sString

We have to override, using #alias_method does not work because #to_s is defined in the base class.

Returns:

  • (String)


10
11
12
# File 'lib/jiraSOAP/macruby_bonuses.rb', line 10

def to_s
  absoluteString
end