Sha256: 20e58cf5f8219b05d34acfbe89945822b6ddf04590406bbd4da73a35f4f29716
Contents?: true
Size: 476 Bytes
Versions: 1
Compression:
Stored size: 476 Bytes
Contents
module Joybox module Debug class ProxyView < UIView attr_accessor :node def to_s @node.to_s end def position @node.position end def position=(position) @node.position = position end def method_missing(method, *args, &block) if @node.respond_to?(method) @node.send(method, *args, &block) else raise NoMethodError end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
joybox-1.0.0 | motion/joybox-ios/debug/proxy_view.rb |