Sha256: f53cb90476eb12f2fa497a52798f0a9aae4f818fc6fb10d6d9db956affbd9baa

Contents?: true

Size: 476 Bytes

Versions: 1

Compression:

Stored size: 476 Bytes

Contents

module Joybox
  module Debug

  	class ProxyView < NSView

      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-osx/debug/proxy_view.rb