gitextract_83mw8g5j/ ├── .gitignore ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── GEM.md ├── GETTING_STARTED.md ├── Gemfile ├── HACKING.md ├── LICENSE ├── README.md ├── Rakefile ├── bubble-wrap.gemspec ├── lib/ │ ├── bubble-wrap/ │ │ ├── all.rb │ │ ├── camera.rb │ │ ├── core.rb │ │ ├── ext/ │ │ │ └── motion_project_app.rb │ │ ├── ext.rb │ │ ├── font.rb │ │ ├── loader.rb │ │ ├── location.rb │ │ ├── mail.rb │ │ ├── media.rb │ │ ├── motion.rb │ │ ├── network-indicator.rb │ │ ├── reactor.rb │ │ ├── requirement/ │ │ │ └── path_manipulation.rb │ │ ├── requirement.rb │ │ ├── rss_parser.rb │ │ ├── sms.rb │ │ ├── test.rb │ │ ├── ui.rb │ │ └── version.rb │ └── bubble-wrap.rb ├── motion/ │ ├── core/ │ │ ├── app.rb │ │ ├── device/ │ │ │ ├── ios/ │ │ │ │ ├── camera.rb │ │ │ │ ├── camera_wrapper.rb │ │ │ │ └── screen.rb │ │ │ ├── osx/ │ │ │ │ └── screen.rb │ │ │ └── screen.rb │ │ ├── device.rb │ │ ├── ios/ │ │ │ ├── app.rb │ │ │ ├── device.rb │ │ │ └── ns_index_path.rb │ │ ├── json.rb │ │ ├── kvo.rb │ │ ├── ns_index_path.rb │ │ ├── ns_notification_center.rb │ │ ├── ns_url_request.rb │ │ ├── ns_user_defaults.rb │ │ ├── osx/ │ │ │ ├── app.rb │ │ │ └── device.rb │ │ ├── persistence.rb │ │ ├── pollute.rb │ │ ├── string.rb │ │ └── time.rb │ ├── core.rb │ ├── font/ │ │ └── font.rb │ ├── ios/ │ │ └── 8/ │ │ └── location_constants.rb │ ├── location/ │ │ ├── location.rb │ │ └── pollute.rb │ ├── mail/ │ │ ├── mail.rb │ │ └── result.rb │ ├── media/ │ │ ├── media.rb │ │ └── player.rb │ ├── motion/ │ │ ├── accelerometer.rb │ │ ├── device_motion.rb │ │ ├── gyroscope.rb │ │ ├── magnetometer.rb │ │ └── motion.rb │ ├── network-indicator/ │ │ └── network-indicator.rb │ ├── reactor/ │ │ ├── default_deferrable.rb │ │ ├── deferrable.rb │ │ ├── dependent_deferrable.rb │ │ ├── eventable.rb │ │ ├── future.rb │ │ ├── periodic_timer.rb │ │ ├── queue.rb │ │ ├── thread_aware_deferrable.rb │ │ └── timer.rb │ ├── reactor.rb │ ├── rss_parser.rb │ ├── shortcut.rb │ ├── sms/ │ │ ├── result.rb │ │ └── sms.rb │ ├── test_suite_delegate.rb │ ├── ui/ │ │ ├── pollute.rb │ │ ├── ui_activity_view_controller_wrapper.rb │ │ ├── ui_alert_view.rb │ │ ├── ui_bar_button_item.rb │ │ ├── ui_control_wrapper.rb │ │ ├── ui_view_controller_wrapper.rb │ │ └── ui_view_wrapper.rb │ └── util/ │ ├── constants.rb │ └── deprecated.rb ├── resources/ │ ├── Localizable.strings │ └── atom.xml ├── samples/ │ ├── alert/ │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── app_delegate.rb │ │ │ └── controllers/ │ │ │ └── alert_view_controller.rb │ │ └── spec/ │ │ └── main_spec.rb │ ├── camera/ │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── app_delegate.rb │ │ │ └── controllers/ │ │ │ └── camera_controller.rb │ │ └── spec/ │ │ └── main_spec.rb │ ├── gesture/ │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── app_delegate.rb │ │ │ ├── controllers/ │ │ │ │ └── drawing_view_controller.rb │ │ │ ├── helpers/ │ │ │ │ └── drawing_helper.rb │ │ │ └── views/ │ │ │ └── drawing/ │ │ │ ├── gesture_view.rb │ │ │ └── rect_view.rb │ │ └── spec/ │ │ └── main_spec.rb │ ├── location/ │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── app_delegate.rb │ │ │ ├── controllers/ │ │ │ │ └── places_list_controller.rb │ │ │ └── models/ │ │ │ └── places.rb │ │ └── spec/ │ │ └── main_spec.rb │ ├── media/ │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── app_delegate.rb │ │ │ └── controllers/ │ │ │ └── play_controller.rb │ │ └── spec/ │ │ └── main_spec.rb │ └── osx/ │ ├── Gemfile │ ├── Rakefile │ ├── app/ │ │ ├── app_delegate.rb │ │ └── menu.rb │ ├── resources/ │ │ └── Credits.rtf │ └── spec/ │ └── main_spec.rb └── spec/ ├── lib/ │ ├── bubble-wrap/ │ │ ├── ext/ │ │ │ ├── motion_project_app_spec.rb │ │ │ └── motion_project_config_spec.rb │ │ ├── requirement/ │ │ │ └── path_manipulation_spec.rb │ │ └── requirement_spec.rb │ ├── bubble-wrap_spec.rb │ └── motion_stub.rb └── motion/ ├── core/ │ ├── app_spec.rb │ ├── device/ │ │ ├── ios/ │ │ │ ├── camera_spec.rb │ │ │ ├── camera_wrapper_spec.rb │ │ │ ├── device_spec.rb │ │ │ └── screen_spec.rb │ │ └── osx/ │ │ └── screen_spec.rb │ ├── device_spec.rb │ ├── ios/ │ │ ├── app_spec.rb │ │ └── ns_index_path_spec.rb │ ├── json_spec.rb │ ├── kvo_spec.rb │ ├── ns_index_path_spec.rb │ ├── ns_notification_center_spec.rb │ ├── osx/ │ │ └── app_spec.rb │ ├── persistence_spec.rb │ ├── string_spec.rb │ └── time_spec.rb ├── core_spec.rb ├── font/ │ └── font_spec.rb ├── location/ │ └── location_spec.rb ├── mail/ │ ├── mail_spec.rb │ └── result_spec.rb ├── media/ │ └── player_spec.rb ├── motion/ │ └── core_motion_spec.rb ├── network-indicator/ │ └── network_indicator_spec.rb ├── reactor/ │ ├── deferrable_spec.rb │ ├── dependent_deferrable_spec.rb │ ├── eventable_spec.rb │ └── thread_aware_deferrable_spec.rb ├── reactor_spec.rb ├── rss_parser_spec.rb ├── sms/ │ ├── result_spec.rb │ └── sms_spec.rb ├── ui/ │ ├── pollute_spec.rb │ ├── ui_activity_view_controller_wrapper_spec.rb │ ├── ui_alert_view_spec.rb │ ├── ui_bar_button_item_spec.rb │ ├── ui_control_wrapper_spec.rb │ ├── ui_view_controller_wrapper_spec.rb │ └── ui_view_wrapper_spec.rb └── util/ ├── constants_spec.rb └── deprecated_spec.rb