├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── bluepotion_application.rb ├── cells │ └── image_cell.rb ├── screens │ ├── example_custom_table_cells_screen.rb │ ├── example_partial_list_xml_screen.rb │ ├── example_table_screen.rb │ ├── example_xml_screen.rb │ └── home_screen.rb └── stylesheets │ ├── application_stylesheet.rb │ ├── example_custom_table_cells_screen_stylesheet.rb │ ├── example_table_screen_stylehseet.rb │ ├── example_xml_screen_stylesheet.rb │ └── home_screen_stylesheet.rb ├── bin ├── bluepotion ├── bluepotion_add_line_numbers └── bluepotion_remove_line_numbers ├── bluepotion.gemspec ├── docs ├── contributing.md ├── index.md └── quick_start.md ├── lib ├── bluepotion.rb └── project │ ├── alert_dialog │ └── alert_dialog.rb │ ├── benchmark.rb │ ├── blue_potion_net.rb │ ├── compatibility │ └── dispatch.rb │ ├── date_dialog │ └── potion_date_time_picker.rb │ ├── delayed_execution.rb │ ├── ext │ ├── activity.rb │ ├── array_list.rb │ ├── fragment.rb │ ├── nil.rb │ ├── object.rb │ ├── string.rb │ ├── symbol.rb │ ├── time.rb │ └── view.rb │ ├── potion.rb │ ├── potion_dialog │ └── potion_dialog.rb │ ├── pro_motion │ ├── activities │ │ ├── pm_activity.rb │ │ ├── pm_home_activity.rb │ │ ├── pm_navigation_activity.rb │ │ └── pm_single_fragment_activity.rb │ ├── adapters │ │ ├── pm_base_adapter.rb │ │ └── pm_cursor_adapter.rb │ ├── fragments │ │ ├── pm_list_screen.rb │ │ ├── pm_screen.rb │ │ ├── pm_screen_module.rb │ │ ├── pm_web_screen.rb │ │ └── refreshable_list.rb │ ├── pm_application.rb │ └── support │ │ └── pm_hash_bundle.rb │ ├── progress_hud │ └── progress_hud.rb │ ├── ruby_motion_query │ ├── rmq │ │ ├── RMQ.java │ │ ├── actions.rb │ │ ├── config.rb │ │ ├── data.rb │ │ ├── debug.rb │ │ ├── enumerablish.rb │ │ ├── event_wrappers │ │ │ ├── ptr_handler.rb │ │ │ ├── rmq_checked_change.rb │ │ │ ├── rmq_click.rb │ │ │ ├── rmq_date_listener.rb │ │ │ ├── rmq_focus_listener.rb │ │ │ ├── rmq_keyboard_action.rb │ │ │ ├── rmq_number_picker_change.rb │ │ │ ├── rmq_seek_change.rb │ │ │ ├── rmq_select_change.rb │ │ │ ├── rmq_text_change.rb │ │ │ └── rmq_time_listener.rb │ │ ├── events.rb │ │ ├── factory.rb │ │ ├── position.rb │ │ ├── rmq.rb │ │ ├── selectors.rb │ │ ├── styles.rb │ │ ├── subviews.rb │ │ ├── tags.rb │ │ ├── traverse.rb │ │ ├── utils.rb │ │ └── version.rb │ ├── rmq_activity_data.rb │ ├── rmq_app.rb │ ├── rmq_color.rb │ ├── rmq_device.rb │ ├── rmq_event.rb │ ├── rmq_font.rb │ ├── rmq_image.rb │ ├── rmq_rect.rb │ ├── rmq_resource.rb │ ├── rmq_screen_data.rb │ ├── rmq_stylesheet.rb │ ├── rmq_validation.rb │ ├── rmq_view_data.rb │ └── stylers │ │ ├── rmq_button_styler.rb │ │ ├── rmq_image_button_styler.rb │ │ ├── rmq_image_view_styler.rb │ │ ├── rmq_linear_layout_styler.rb │ │ ├── rmq_relative_layout_styler.rb │ │ ├── rmq_styler_helper.rb │ │ ├── rmq_text_view_styler.rb │ │ └── rmq_view_styler.rb │ ├── version.rb │ └── volley_wrap │ ├── http_result.rb │ ├── request.java │ ├── request.rb │ ├── response_listener.rb │ └── session_client.rb ├── mkdocs.yml ├── resources ├── drawable-hdpi │ ├── bluepotion_logo.png │ └── ic_launcher.png ├── drawable-mdpi │ ├── bluepotion_logo.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── bluepotion_logo.png │ └── ic_launcher.png ├── drawable-xxhdpi │ ├── bluepotion_logo.png │ └── ic_launcher.png ├── drawable-xxxhdpi │ ├── bluepotion_logo.png │ └── ic_launcher.png ├── layout │ ├── blue_potion_dialog.xml │ ├── dialog_list_view.xml │ ├── embedded_listview.xml │ ├── example_xml_screen.xml │ ├── image_cell.xml │ └── tb_section_header.xml └── values │ ├── colors.xml │ └── dimens.xml ├── spec ├── alert_dialog │ └── alert_dialog_spec.rb ├── main_spec.rb ├── rmq │ ├── base.rb │ ├── stylers │ │ └── rmq_view_styler_spec.rb │ ├── subviews.rb │ └── traverse.rb └── screens │ └── example_xml_screen_spec.rb └── templates ├── screen ├── app │ ├── screens │ │ └── name_screen.rb │ └── stylesheets │ │ └── name_screen_stylesheet.rb └── spec │ └── screens │ └── name_screen_spec.rb └── xml_screen ├── app ├── screens │ └── name_screen.rb └── stylesheets │ └── name_screen_stylesheet.rb ├── resources └── layout │ └── name_screen.xml └── spec └── screens └── name_screen_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/Rakefile -------------------------------------------------------------------------------- /app/bluepotion_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/bluepotion_application.rb -------------------------------------------------------------------------------- /app/cells/image_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/cells/image_cell.rb -------------------------------------------------------------------------------- /app/screens/example_custom_table_cells_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/screens/example_custom_table_cells_screen.rb -------------------------------------------------------------------------------- /app/screens/example_partial_list_xml_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/screens/example_partial_list_xml_screen.rb -------------------------------------------------------------------------------- /app/screens/example_table_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/screens/example_table_screen.rb -------------------------------------------------------------------------------- /app/screens/example_xml_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/screens/example_xml_screen.rb -------------------------------------------------------------------------------- /app/screens/home_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/screens/home_screen.rb -------------------------------------------------------------------------------- /app/stylesheets/application_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/stylesheets/application_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/example_custom_table_cells_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/stylesheets/example_custom_table_cells_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/example_table_screen_stylehseet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/stylesheets/example_table_screen_stylehseet.rb -------------------------------------------------------------------------------- /app/stylesheets/example_xml_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/stylesheets/example_xml_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/home_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/app/stylesheets/home_screen_stylesheet.rb -------------------------------------------------------------------------------- /bin/bluepotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/bin/bluepotion -------------------------------------------------------------------------------- /bin/bluepotion_add_line_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/bin/bluepotion_add_line_numbers -------------------------------------------------------------------------------- /bin/bluepotion_remove_line_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/bin/bluepotion_remove_line_numbers -------------------------------------------------------------------------------- /bluepotion.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/bluepotion.gemspec -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/quick_start.md: -------------------------------------------------------------------------------- 1 | # Quick start 2 | -------------------------------------------------------------------------------- /lib/bluepotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/bluepotion.rb -------------------------------------------------------------------------------- /lib/project/alert_dialog/alert_dialog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/alert_dialog/alert_dialog.rb -------------------------------------------------------------------------------- /lib/project/benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/benchmark.rb -------------------------------------------------------------------------------- /lib/project/blue_potion_net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/blue_potion_net.rb -------------------------------------------------------------------------------- /lib/project/compatibility/dispatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/compatibility/dispatch.rb -------------------------------------------------------------------------------- /lib/project/date_dialog/potion_date_time_picker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/date_dialog/potion_date_time_picker.rb -------------------------------------------------------------------------------- /lib/project/delayed_execution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/delayed_execution.rb -------------------------------------------------------------------------------- /lib/project/ext/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/activity.rb -------------------------------------------------------------------------------- /lib/project/ext/array_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/array_list.rb -------------------------------------------------------------------------------- /lib/project/ext/fragment.rb: -------------------------------------------------------------------------------- 1 | class Android::App::Fragment 2 | end 3 | -------------------------------------------------------------------------------- /lib/project/ext/nil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/nil.rb -------------------------------------------------------------------------------- /lib/project/ext/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/object.rb -------------------------------------------------------------------------------- /lib/project/ext/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/string.rb -------------------------------------------------------------------------------- /lib/project/ext/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/symbol.rb -------------------------------------------------------------------------------- /lib/project/ext/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/time.rb -------------------------------------------------------------------------------- /lib/project/ext/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ext/view.rb -------------------------------------------------------------------------------- /lib/project/potion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/potion.rb -------------------------------------------------------------------------------- /lib/project/potion_dialog/potion_dialog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/potion_dialog/potion_dialog.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/activities/pm_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/activities/pm_activity.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/activities/pm_home_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/activities/pm_home_activity.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/activities/pm_navigation_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/activities/pm_navigation_activity.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/activities/pm_single_fragment_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/activities/pm_single_fragment_activity.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/adapters/pm_base_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/adapters/pm_base_adapter.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/adapters/pm_cursor_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/adapters/pm_cursor_adapter.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/fragments/pm_list_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/fragments/pm_list_screen.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/fragments/pm_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/fragments/pm_screen.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/fragments/pm_screen_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/fragments/pm_screen_module.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/fragments/pm_web_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/fragments/pm_web_screen.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/fragments/refreshable_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/fragments/refreshable_list.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/pm_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/pm_application.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/support/pm_hash_bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/pro_motion/support/pm_hash_bundle.rb -------------------------------------------------------------------------------- /lib/project/progress_hud/progress_hud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/progress_hud/progress_hud.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/RMQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/RMQ.java -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/actions.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/config.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/data.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/debug.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/enumerablish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/enumerablish.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/ptr_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/ptr_handler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_checked_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_checked_change.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_click.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_click.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_date_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_date_listener.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_focus_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_focus_listener.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_keyboard_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_keyboard_action.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_number_picker_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_number_picker_change.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_seek_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_seek_change.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_select_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_select_change.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_text_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_text_change.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/event_wrappers/rmq_time_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/event_wrappers/rmq_time_listener.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/events.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/factory.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/position.rb: -------------------------------------------------------------------------------- 1 | class RMQ 2 | end 3 | -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/rmq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/rmq.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/selectors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/selectors.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/styles.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/subviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/subviews.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/tags.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/traverse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/traverse.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/utils.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq/version.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_activity_data.rb: -------------------------------------------------------------------------------- 1 | class RMQActivityData 2 | attr_accessor :stylesheet, :cached_rmq 3 | end 4 | -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_app.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_color.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_device.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_device.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_event.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_font.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_image.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_rect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_rect.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_resource.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_screen_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_screen_data.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_stylesheet.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_validation.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/rmq_view_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/rmq_view_data.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_button_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_button_styler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_image_button_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_image_button_styler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_image_view_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_image_view_styler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_linear_layout_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_linear_layout_styler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_relative_layout_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_relative_layout_styler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_styler_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_styler_helper.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_text_view_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_text_view_styler.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/rmq_view_styler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/ruby_motion_query/stylers/rmq_view_styler.rb -------------------------------------------------------------------------------- /lib/project/version.rb: -------------------------------------------------------------------------------- 1 | module BluePotion 2 | VERSION = "0.1.7" 3 | end 4 | -------------------------------------------------------------------------------- /lib/project/volley_wrap/http_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/volley_wrap/http_result.rb -------------------------------------------------------------------------------- /lib/project/volley_wrap/request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/volley_wrap/request.java -------------------------------------------------------------------------------- /lib/project/volley_wrap/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/volley_wrap/request.rb -------------------------------------------------------------------------------- /lib/project/volley_wrap/response_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/volley_wrap/response_listener.rb -------------------------------------------------------------------------------- /lib/project/volley_wrap/session_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/lib/project/volley_wrap/session_client.rb -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /resources/drawable-hdpi/bluepotion_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-hdpi/bluepotion_logo.png -------------------------------------------------------------------------------- /resources/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/drawable-mdpi/bluepotion_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-mdpi/bluepotion_logo.png -------------------------------------------------------------------------------- /resources/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/drawable-xhdpi/bluepotion_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-xhdpi/bluepotion_logo.png -------------------------------------------------------------------------------- /resources/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/drawable-xxhdpi/bluepotion_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-xxhdpi/bluepotion_logo.png -------------------------------------------------------------------------------- /resources/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/drawable-xxxhdpi/bluepotion_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-xxxhdpi/bluepotion_logo.png -------------------------------------------------------------------------------- /resources/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/layout/blue_potion_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/layout/blue_potion_dialog.xml -------------------------------------------------------------------------------- /resources/layout/dialog_list_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/layout/dialog_list_view.xml -------------------------------------------------------------------------------- /resources/layout/embedded_listview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/layout/embedded_listview.xml -------------------------------------------------------------------------------- /resources/layout/example_xml_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/layout/example_xml_screen.xml -------------------------------------------------------------------------------- /resources/layout/image_cell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/layout/image_cell.xml -------------------------------------------------------------------------------- /resources/layout/tb_section_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/layout/tb_section_header.xml -------------------------------------------------------------------------------- /resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/values/colors.xml -------------------------------------------------------------------------------- /resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/resources/values/dimens.xml -------------------------------------------------------------------------------- /spec/alert_dialog/alert_dialog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/alert_dialog/alert_dialog_spec.rb -------------------------------------------------------------------------------- /spec/main_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/main_spec.rb -------------------------------------------------------------------------------- /spec/rmq/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/rmq/base.rb -------------------------------------------------------------------------------- /spec/rmq/stylers/rmq_view_styler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/rmq/stylers/rmq_view_styler_spec.rb -------------------------------------------------------------------------------- /spec/rmq/subviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/rmq/subviews.rb -------------------------------------------------------------------------------- /spec/rmq/traverse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/rmq/traverse.rb -------------------------------------------------------------------------------- /spec/screens/example_xml_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/spec/screens/example_xml_screen_spec.rb -------------------------------------------------------------------------------- /templates/screen/app/screens/name_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/screen/app/screens/name_screen.rb -------------------------------------------------------------------------------- /templates/screen/app/stylesheets/name_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/screen/app/stylesheets/name_screen_stylesheet.rb -------------------------------------------------------------------------------- /templates/screen/spec/screens/name_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/screen/spec/screens/name_screen_spec.rb -------------------------------------------------------------------------------- /templates/xml_screen/app/screens/name_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/xml_screen/app/screens/name_screen.rb -------------------------------------------------------------------------------- /templates/xml_screen/app/stylesheets/name_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/xml_screen/app/stylesheets/name_screen_stylesheet.rb -------------------------------------------------------------------------------- /templates/xml_screen/resources/layout/name_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/xml_screen/resources/layout/name_screen.xml -------------------------------------------------------------------------------- /templates/xml_screen/spec/screens/name_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/bluepotion/HEAD/templates/xml_screen/spec/screens/name_screen_spec.rb --------------------------------------------------------------------------------