├── .bundle └── config ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── app_delegate.rb ├── controllers │ └── example_controller.rb ├── models │ └── contributor.rb ├── screens │ ├── collection_screen.rb │ ├── contributor_screen.rb │ ├── home_screen.rb │ ├── metal_table_screen.rb │ └── tasks_screen.rb ├── shared │ └── contributors_module.rb ├── stylesheets │ ├── application_stylesheet.rb │ ├── collection_cell_stylesheet.rb │ ├── collection_screen_stylesheet.rb │ ├── contributor_screen_stylesheet.rb │ ├── example_controller_stylesheet.rb │ ├── home_screen_stylesheet.rb │ ├── metal_table_screen_stylesheet.rb │ └── tasks_screen_stylesheet.rb ├── test_objects │ ├── delegate_test_attributes.rb │ ├── test_controller.rb │ ├── test_grouped_table_screen.rb │ ├── test_screen.rb │ ├── test_screen_stylesheet.rb │ ├── test_table_screen.rb │ └── test_view.rb └── views │ ├── collection_cell.rb │ ├── contributor_cell.rb │ ├── hello_world_section.rb │ ├── metal_table_cell.rb │ └── task_cell.rb ├── bin └── potion ├── docs ├── contributing.md ├── cookbook │ ├── accessibility.md │ ├── actions.md │ ├── alerts_and_action_sheets.md │ ├── animations.md │ ├── app.md │ ├── app_delegate.md │ ├── attributes.md │ ├── colors.md │ ├── command_line.md │ ├── core_data.md │ ├── debugging.md │ ├── device.md │ ├── distribution.md │ ├── events_and_gestures.md │ ├── fonts.md │ ├── format.md │ ├── images.md │ ├── layout_a_screen.md │ ├── misc.md │ ├── networking.md │ ├── project.md │ ├── screens.md │ ├── selecting.md │ ├── stylers.md │ ├── stylesheets.md │ ├── table_screens.md │ ├── tagging.md │ ├── testing.md │ ├── timers.md │ ├── traversing.md │ ├── troubleshooting.md │ └── validations.md ├── index.md ├── new_features_for_rmq_and_promotion.md ├── quick_start.md └── redpotion_specific_features.md ├── lib ├── project │ ├── ext │ │ ├── kernel.rb │ │ ├── object.rb │ │ ├── pm_delegate.rb │ │ ├── ui_collection_view_cell.rb │ │ ├── ui_color.rb │ │ ├── ui_image_view.rb │ │ ├── ui_table_view_cell.rb │ │ ├── ui_view.rb │ │ └── ui_view_controller.rb │ ├── pro_motion │ │ ├── collection_screen.rb │ │ ├── data_table.rb │ │ ├── data_table_screen.rb │ │ ├── data_table_search_delegate.rb │ │ ├── data_table_searchable.rb │ │ ├── screen.rb │ │ ├── support.rb │ │ └── table.rb │ ├── ruby_motion_query │ │ ├── app.rb │ │ ├── stylers │ │ │ └── ui_image_view.rb │ │ └── traverse.rb │ └── version.rb └── redpotion.rb ├── mkdocs.yml ├── redpotion.gemspec ├── resources ├── Default-568h@2x.png ├── grumpy_cat.png ├── grumpy_cat@2x.png ├── homer.jpeg └── icon-60@2x.png ├── schemas ├── 0001_initial.rb └── 0002_add_city_names.rb ├── spec ├── ext │ ├── object_spec.rb │ ├── ui_color_spec.rb │ ├── ui_image_view_spec.rb │ ├── ui_view_controller_spec.rb │ └── ui_view_spec.rb ├── helpers │ ├── cdq.rb │ └── load_image.rb ├── main_spec.rb ├── pro_motion │ ├── data_table_screen_spec.rb │ └── screen_module_spec.rb ├── ruby_motion_query │ ├── app_spec.rb │ ├── stylers │ │ └── ui_image_view_spec.rb │ └── traverse_spec.rb └── screens │ └── ui_collection_view.rb └── templates ├── collection_view_screen ├── app │ ├── screens │ │ └── name_screen.rb │ ├── stylesheets │ │ ├── name_cell_stylesheet.rb │ │ └── name_screen_stylesheet.rb │ └── views │ │ └── name_cell.rb └── spec │ ├── screens │ └── name_screen_spec.rb │ └── views │ └── name_cell_spec.rb ├── metal_table_screen ├── app │ ├── screens │ │ └── name_screen.rb │ ├── stylesheets │ │ └── name_screen_stylesheet.rb │ └── views │ │ └── name_cell.rb └── spec │ └── screens │ └── name_screen_spec.rb ├── screen ├── app │ ├── screens │ │ └── name_screen.rb │ └── stylesheets │ │ └── name_screen_stylesheet.rb └── spec │ └── screens │ └── name_screen_spec.rb ├── table_screen_cell ├── app │ ├── stylesheets │ │ └── name_stylesheet.rb │ └── views │ │ └── name.rb └── spec │ └── views │ └── name.rb └── view ├── app ├── stylesheets │ └── name_stylesheet.rb └── views │ └── name.rb └── spec └── views └── name.rb /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/.bundle/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/Rakefile -------------------------------------------------------------------------------- /app/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/app_delegate.rb -------------------------------------------------------------------------------- /app/controllers/example_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/controllers/example_controller.rb -------------------------------------------------------------------------------- /app/models/contributor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/models/contributor.rb -------------------------------------------------------------------------------- /app/screens/collection_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/screens/collection_screen.rb -------------------------------------------------------------------------------- /app/screens/contributor_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/screens/contributor_screen.rb -------------------------------------------------------------------------------- /app/screens/home_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/screens/home_screen.rb -------------------------------------------------------------------------------- /app/screens/metal_table_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/screens/metal_table_screen.rb -------------------------------------------------------------------------------- /app/screens/tasks_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/screens/tasks_screen.rb -------------------------------------------------------------------------------- /app/shared/contributors_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/shared/contributors_module.rb -------------------------------------------------------------------------------- /app/stylesheets/application_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/application_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/collection_cell_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/collection_cell_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/collection_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/collection_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/contributor_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/contributor_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/example_controller_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/example_controller_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/home_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/home_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/metal_table_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/metal_table_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/tasks_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/stylesheets/tasks_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/test_objects/delegate_test_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/delegate_test_attributes.rb -------------------------------------------------------------------------------- /app/test_objects/test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/test_controller.rb -------------------------------------------------------------------------------- /app/test_objects/test_grouped_table_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/test_grouped_table_screen.rb -------------------------------------------------------------------------------- /app/test_objects/test_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/test_screen.rb -------------------------------------------------------------------------------- /app/test_objects/test_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/test_screen_stylesheet.rb -------------------------------------------------------------------------------- /app/test_objects/test_table_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/test_table_screen.rb -------------------------------------------------------------------------------- /app/test_objects/test_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/test_objects/test_view.rb -------------------------------------------------------------------------------- /app/views/collection_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/views/collection_cell.rb -------------------------------------------------------------------------------- /app/views/contributor_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/views/contributor_cell.rb -------------------------------------------------------------------------------- /app/views/hello_world_section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/views/hello_world_section.rb -------------------------------------------------------------------------------- /app/views/metal_table_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/views/metal_table_cell.rb -------------------------------------------------------------------------------- /app/views/task_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/app/views/task_cell.rb -------------------------------------------------------------------------------- /bin/potion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/bin/potion -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/cookbook/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/accessibility.md -------------------------------------------------------------------------------- /docs/cookbook/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/actions.md -------------------------------------------------------------------------------- /docs/cookbook/alerts_and_action_sheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/alerts_and_action_sheets.md -------------------------------------------------------------------------------- /docs/cookbook/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/animations.md -------------------------------------------------------------------------------- /docs/cookbook/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/app.md -------------------------------------------------------------------------------- /docs/cookbook/app_delegate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/app_delegate.md -------------------------------------------------------------------------------- /docs/cookbook/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/attributes.md -------------------------------------------------------------------------------- /docs/cookbook/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/colors.md -------------------------------------------------------------------------------- /docs/cookbook/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/command_line.md -------------------------------------------------------------------------------- /docs/cookbook/core_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/core_data.md -------------------------------------------------------------------------------- /docs/cookbook/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/debugging.md -------------------------------------------------------------------------------- /docs/cookbook/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/device.md -------------------------------------------------------------------------------- /docs/cookbook/distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/distribution.md -------------------------------------------------------------------------------- /docs/cookbook/events_and_gestures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/events_and_gestures.md -------------------------------------------------------------------------------- /docs/cookbook/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/fonts.md -------------------------------------------------------------------------------- /docs/cookbook/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/format.md -------------------------------------------------------------------------------- /docs/cookbook/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/images.md -------------------------------------------------------------------------------- /docs/cookbook/layout_a_screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/layout_a_screen.md -------------------------------------------------------------------------------- /docs/cookbook/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/misc.md -------------------------------------------------------------------------------- /docs/cookbook/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/networking.md -------------------------------------------------------------------------------- /docs/cookbook/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/project.md -------------------------------------------------------------------------------- /docs/cookbook/screens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/screens.md -------------------------------------------------------------------------------- /docs/cookbook/selecting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/selecting.md -------------------------------------------------------------------------------- /docs/cookbook/stylers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/stylers.md -------------------------------------------------------------------------------- /docs/cookbook/stylesheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/stylesheets.md -------------------------------------------------------------------------------- /docs/cookbook/table_screens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/table_screens.md -------------------------------------------------------------------------------- /docs/cookbook/tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/tagging.md -------------------------------------------------------------------------------- /docs/cookbook/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/testing.md -------------------------------------------------------------------------------- /docs/cookbook/timers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/timers.md -------------------------------------------------------------------------------- /docs/cookbook/traversing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/traversing.md -------------------------------------------------------------------------------- /docs/cookbook/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/troubleshooting.md -------------------------------------------------------------------------------- /docs/cookbook/validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/cookbook/validations.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/new_features_for_rmq_and_promotion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/new_features_for_rmq_and_promotion.md -------------------------------------------------------------------------------- /docs/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/quick_start.md -------------------------------------------------------------------------------- /docs/redpotion_specific_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/docs/redpotion_specific_features.md -------------------------------------------------------------------------------- /lib/project/ext/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/kernel.rb -------------------------------------------------------------------------------- /lib/project/ext/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/object.rb -------------------------------------------------------------------------------- /lib/project/ext/pm_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/pm_delegate.rb -------------------------------------------------------------------------------- /lib/project/ext/ui_collection_view_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/ui_collection_view_cell.rb -------------------------------------------------------------------------------- /lib/project/ext/ui_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/ui_color.rb -------------------------------------------------------------------------------- /lib/project/ext/ui_image_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/ui_image_view.rb -------------------------------------------------------------------------------- /lib/project/ext/ui_table_view_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/ui_table_view_cell.rb -------------------------------------------------------------------------------- /lib/project/ext/ui_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/ui_view.rb -------------------------------------------------------------------------------- /lib/project/ext/ui_view_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ext/ui_view_controller.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/collection_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/collection_screen.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/data_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/data_table.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/data_table_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/data_table_screen.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/data_table_search_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/data_table_search_delegate.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/data_table_searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/data_table_searchable.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/screen.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/support.rb -------------------------------------------------------------------------------- /lib/project/pro_motion/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/pro_motion/table.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ruby_motion_query/app.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/stylers/ui_image_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ruby_motion_query/stylers/ui_image_view.rb -------------------------------------------------------------------------------- /lib/project/ruby_motion_query/traverse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/project/ruby_motion_query/traverse.rb -------------------------------------------------------------------------------- /lib/project/version.rb: -------------------------------------------------------------------------------- 1 | module RedPotion 2 | VERSION = "1.7.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/redpotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/lib/redpotion.rb -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /redpotion.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/redpotion.gemspec -------------------------------------------------------------------------------- /resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/resources/Default-568h@2x.png -------------------------------------------------------------------------------- /resources/grumpy_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/resources/grumpy_cat.png -------------------------------------------------------------------------------- /resources/grumpy_cat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/resources/grumpy_cat@2x.png -------------------------------------------------------------------------------- /resources/homer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/resources/homer.jpeg -------------------------------------------------------------------------------- /resources/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/resources/icon-60@2x.png -------------------------------------------------------------------------------- /schemas/0001_initial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/schemas/0001_initial.rb -------------------------------------------------------------------------------- /schemas/0002_add_city_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/schemas/0002_add_city_names.rb -------------------------------------------------------------------------------- /spec/ext/object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ext/object_spec.rb -------------------------------------------------------------------------------- /spec/ext/ui_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ext/ui_color_spec.rb -------------------------------------------------------------------------------- /spec/ext/ui_image_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ext/ui_image_view_spec.rb -------------------------------------------------------------------------------- /spec/ext/ui_view_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ext/ui_view_controller_spec.rb -------------------------------------------------------------------------------- /spec/ext/ui_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ext/ui_view_spec.rb -------------------------------------------------------------------------------- /spec/helpers/cdq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/helpers/cdq.rb -------------------------------------------------------------------------------- /spec/helpers/load_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/helpers/load_image.rb -------------------------------------------------------------------------------- /spec/main_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/main_spec.rb -------------------------------------------------------------------------------- /spec/pro_motion/data_table_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/pro_motion/data_table_screen_spec.rb -------------------------------------------------------------------------------- /spec/pro_motion/screen_module_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/pro_motion/screen_module_spec.rb -------------------------------------------------------------------------------- /spec/ruby_motion_query/app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ruby_motion_query/app_spec.rb -------------------------------------------------------------------------------- /spec/ruby_motion_query/stylers/ui_image_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ruby_motion_query/stylers/ui_image_view_spec.rb -------------------------------------------------------------------------------- /spec/ruby_motion_query/traverse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/ruby_motion_query/traverse_spec.rb -------------------------------------------------------------------------------- /spec/screens/ui_collection_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/spec/screens/ui_collection_view.rb -------------------------------------------------------------------------------- /templates/collection_view_screen/app/screens/name_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/collection_view_screen/app/screens/name_screen.rb -------------------------------------------------------------------------------- /templates/collection_view_screen/app/stylesheets/name_cell_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/collection_view_screen/app/stylesheets/name_cell_stylesheet.rb -------------------------------------------------------------------------------- /templates/collection_view_screen/app/stylesheets/name_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/collection_view_screen/app/stylesheets/name_screen_stylesheet.rb -------------------------------------------------------------------------------- /templates/collection_view_screen/app/views/name_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/collection_view_screen/app/views/name_cell.rb -------------------------------------------------------------------------------- /templates/collection_view_screen/spec/screens/name_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/collection_view_screen/spec/screens/name_screen_spec.rb -------------------------------------------------------------------------------- /templates/collection_view_screen/spec/views/name_cell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/collection_view_screen/spec/views/name_cell_spec.rb -------------------------------------------------------------------------------- /templates/metal_table_screen/app/screens/name_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/metal_table_screen/app/screens/name_screen.rb -------------------------------------------------------------------------------- /templates/metal_table_screen/app/stylesheets/name_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/metal_table_screen/app/stylesheets/name_screen_stylesheet.rb -------------------------------------------------------------------------------- /templates/metal_table_screen/app/views/name_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/metal_table_screen/app/views/name_cell.rb -------------------------------------------------------------------------------- /templates/metal_table_screen/spec/screens/name_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/metal_table_screen/spec/screens/name_screen_spec.rb -------------------------------------------------------------------------------- /templates/screen/app/screens/name_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/screen/app/screens/name_screen.rb -------------------------------------------------------------------------------- /templates/screen/app/stylesheets/name_screen_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/screen/app/stylesheets/name_screen_stylesheet.rb -------------------------------------------------------------------------------- /templates/screen/spec/screens/name_screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/screen/spec/screens/name_screen_spec.rb -------------------------------------------------------------------------------- /templates/table_screen_cell/app/stylesheets/name_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/table_screen_cell/app/stylesheets/name_stylesheet.rb -------------------------------------------------------------------------------- /templates/table_screen_cell/app/views/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/table_screen_cell/app/views/name.rb -------------------------------------------------------------------------------- /templates/table_screen_cell/spec/views/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/table_screen_cell/spec/views/name.rb -------------------------------------------------------------------------------- /templates/view/app/stylesheets/name_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/view/app/stylesheets/name_stylesheet.rb -------------------------------------------------------------------------------- /templates/view/app/views/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/view/app/views/name.rb -------------------------------------------------------------------------------- /templates/view/spec/views/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinitered/redpotion/HEAD/templates/view/spec/views/name.rb --------------------------------------------------------------------------------