Sha256: 7bc995c80430db01b56b4e22c7c23cc398ca9f54c4f25483f8af6321eaf70f29
Contents?: true
Size: 744 Bytes
Versions: 145
Compression:
Stored size: 744 Bytes
Contents
require 'rubygems' require 'bundler/setup' require 'ruby-event' module RubyApp module Elements module Mobile require 'ruby_app/element' class Click < RubyApp::Element class ClickedEvent < RubyApp::Element::Event def initialize(data) super(data) end end template_path(:all, File.dirname(__FILE__)) event :clicked def initialize super end protected def on_event(event) on_clicked(event) if event.is_a?(RubyApp::Elements::Mobile::Click::ClickedEvent) super(event) end def on_clicked(event) clicked(event) end end end end end
Version data entries
145 entries across 145 versions & 1 rubygems