Method: UPnP::Device#version

Defined in:
lib/UPnP/device.rb

#versionObject

The version of this device, or the UPnP version if the device did not define it



703
704
705
706
707
708
709
# File 'lib/UPnP/device.rb', line 703

def version
  if self.class.const_defined? :VERSION then
    self.class::VERSION
  else
    UPnP::VERSION
  end
end