Flowdock
method

__attr_proxy

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::RPC::Driver
__attr_proxy(symbol, assignable = false) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/rpc/driver.rb, line 40
      def __attr_proxy(symbol, assignable = false)
        name = symbol.to_s
        module_eval "def \#{name}\n@proxy.\#{name}\nend\n"
        if assignable
          module_eval "def \#{name}=(value)\n@proxy.\#{name} = value\nend\n"
        end
      end
Register or log in to add new notes.