Files
Watson 033fff3526 fix a bug where #tap and #rotate_device cause a crash with "rake spec" on x86_64
http://hipbyte.myjetbrains.com/youtrack/issue/RM-654

The spec helper uses the following methods of UIAutomation.
sendTaps and setOrientation has same method signature in i386 and x86_64.

318:          _event_generator.setOrientation(orientation)
325:        _event_generator.sendAccelerometerX(options[:x], Y:options[:y], Z:options[:z], duration:duration)
330:        _event_generator.shake
341:          _event_generator.sendTaps(taps,
356:          _event_generator.sendFlickWithStartPoint(from, endPoint:to, duration:duration)
371:          _event_generator.sendPinchOpenWithStartPoint(from, endPoint:to, duration:duration)
385:          _event_generator.sendPinchCloseWithStartPoint(from, endPoint:to, duration:duration)
406:        _event_generator.touchDown(points.first)
409:          _event_generator._moveLastTouchPoint(point)
412:        _event_generator.liftUp(points.last)
428:          _event_generator.sendRotate(center, withRadius:radius, rotation:angle, duration:duration, touchCount:touches)
2014-11-07 22:14:13 +09:00
..