├── .gitignore ├── .travis.yml ├── .yardopts ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── doc.rb ├── flow-logo.png ├── flow ├── base64 │ ├── README.md │ ├── android │ │ └── base64.rb │ └── cocoa │ │ └── base64.rb ├── digest │ ├── README.md │ ├── android │ │ └── digest.rb │ └── cocoa │ │ ├── digest.h │ │ ├── digest.m │ │ └── digest.rb ├── json │ ├── README.md │ ├── android │ │ └── json.rb │ └── cocoa │ │ └── json.rb ├── location │ ├── README.md │ ├── android │ │ └── location_services.rb │ ├── cocoa │ │ └── location_services.rb │ └── location.rb ├── net │ ├── README.md │ ├── actions.rb │ ├── android │ │ ├── cookies.rb │ │ ├── reachability.rb │ │ ├── request.rb │ │ └── response_proxy.rb │ ├── authorization.rb │ ├── cocoa │ │ ├── reachability.rb │ │ ├── request.rb │ │ └── response_proxy.rb │ ├── config.rb │ ├── expectation.rb │ ├── header.rb │ ├── mime_types.rb │ ├── net.rb │ ├── response.rb │ ├── session.rb │ └── stubbable.rb ├── store │ ├── README.md │ ├── android │ │ └── store.rb │ └── cocoa │ │ └── store.rb ├── task │ ├── README.md │ ├── android │ │ └── task.rb │ ├── cocoa │ │ └── task.rb │ └── task.rb └── ui │ ├── README.md │ ├── alert.rb │ ├── android │ ├── activity_indicator.rb │ ├── alert.rb │ ├── application.rb │ ├── button.rb │ ├── camera.rb │ ├── color.rb │ ├── control.rb │ ├── font.rb │ ├── gesture.rb │ ├── gradient.rb │ ├── image.rb │ ├── label.rb │ ├── list.rb │ ├── navigation.rb │ ├── screen.rb │ ├── shared_text.rb │ ├── text.rb │ ├── text_input.rb │ ├── ui.rb │ ├── view.rb │ └── web.rb │ ├── cocoa │ ├── activity_indicator.rb │ ├── alert.rb │ ├── application.rb │ ├── button.rb │ ├── camera.rb │ ├── color.rb │ ├── control.rb │ ├── font.rb │ ├── gesture.rb │ ├── gradient.rb │ ├── image.rb │ ├── label.rb │ ├── list.rb │ ├── navigation.rb │ ├── screen.rb │ ├── shared_text.rb │ ├── text.rb │ ├── text_input.rb │ ├── ui.rb │ ├── view.rb │ └── web.rb │ ├── color.rb │ ├── css_layout.h │ ├── css_node.c │ ├── eventable.rb │ ├── font.rb │ ├── list_row.rb │ └── view.rb ├── include └── rubymotion.h ├── lib ├── android.rb ├── cocoa.rb ├── common.rb ├── motion-flow.rb └── motion-flow │ ├── base64.rb │ ├── digest.rb │ ├── json.rb │ ├── loader.rb │ ├── location.rb │ ├── net.rb │ ├── store.rb │ ├── task.rb │ └── ui.rb ├── motion-flow.gemspec ├── samples ├── reddit │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ ├── android │ │ │ ├── main_activity.rb │ │ │ └── timeline_adapter.rb │ │ ├── ios │ │ │ └── app_delegate.rb │ │ ├── osx │ │ │ ├── app_delegate.rb │ │ │ ├── menu.rb │ │ │ └── reddit_controller.rb │ │ ├── post.rb │ │ ├── post_row.rb │ │ ├── posts_list.rb │ │ ├── posts_screen.rb │ │ └── reddit_fetcher.rb │ ├── config │ │ ├── android.rb │ │ ├── ios.rb │ │ └── osx.rb │ └── resources │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ └── Default-736h@3x.png └── ui_demo │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ ├── android │ │ └── main_activity.rb │ ├── ios │ │ └── app_delegate.rb │ └── welcome_screen.rb │ ├── config │ ├── android.rb │ └── ios.rb │ └── resources │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Starjedi.ttf │ └── rubymotion-logo.png ├── template └── flow │ └── files │ ├── .gitignore │ ├── Gemfile │ ├── Rakefile │ ├── app │ ├── android │ │ └── main_activity.rb │ └── ios │ │ └── app_delegate.rb │ ├── config │ ├── android.rb.erb │ ├── ios.rb.erb │ └── osx.rb.erb │ └── resources │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ └── Default-736h@3x.png └── test ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── android │ └── main_activity.rb ├── ios │ └── app_delegate.rb └── osx │ └── app_delegate.rb ├── config ├── android.rb ├── ios.rb └── osx.rb ├── server.rb └── spec ├── base64_spec.rb ├── digest_spec.rb ├── helpers ├── android │ └── constants.rb └── cocoa │ └── constants.rb ├── json_spec.rb ├── net ├── authorization_spec.rb ├── config_spec.rb ├── expectation_spec.rb ├── header_spec.rb ├── response_spec.rb └── session_spec.rb ├── net_spec.rb ├── store_spec.rb ├── task_spec.rb └── ui ├── color_spec.rb ├── label.rb └── view.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- 1 | doc.rb 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/Rakefile -------------------------------------------------------------------------------- /doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/doc.rb -------------------------------------------------------------------------------- /flow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow-logo.png -------------------------------------------------------------------------------- /flow/base64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/base64/README.md -------------------------------------------------------------------------------- /flow/base64/android/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/base64/android/base64.rb -------------------------------------------------------------------------------- /flow/base64/cocoa/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/base64/cocoa/base64.rb -------------------------------------------------------------------------------- /flow/digest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/digest/README.md -------------------------------------------------------------------------------- /flow/digest/android/digest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/digest/android/digest.rb -------------------------------------------------------------------------------- /flow/digest/cocoa/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/digest/cocoa/digest.h -------------------------------------------------------------------------------- /flow/digest/cocoa/digest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/digest/cocoa/digest.m -------------------------------------------------------------------------------- /flow/digest/cocoa/digest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/digest/cocoa/digest.rb -------------------------------------------------------------------------------- /flow/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/json/README.md -------------------------------------------------------------------------------- /flow/json/android/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/json/android/json.rb -------------------------------------------------------------------------------- /flow/json/cocoa/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/json/cocoa/json.rb -------------------------------------------------------------------------------- /flow/location/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/location/README.md -------------------------------------------------------------------------------- /flow/location/android/location_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/location/android/location_services.rb -------------------------------------------------------------------------------- /flow/location/cocoa/location_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/location/cocoa/location_services.rb -------------------------------------------------------------------------------- /flow/location/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/location/location.rb -------------------------------------------------------------------------------- /flow/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/README.md -------------------------------------------------------------------------------- /flow/net/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/actions.rb -------------------------------------------------------------------------------- /flow/net/android/cookies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/android/cookies.rb -------------------------------------------------------------------------------- /flow/net/android/reachability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/android/reachability.rb -------------------------------------------------------------------------------- /flow/net/android/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/android/request.rb -------------------------------------------------------------------------------- /flow/net/android/response_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/android/response_proxy.rb -------------------------------------------------------------------------------- /flow/net/authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/authorization.rb -------------------------------------------------------------------------------- /flow/net/cocoa/reachability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/cocoa/reachability.rb -------------------------------------------------------------------------------- /flow/net/cocoa/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/cocoa/request.rb -------------------------------------------------------------------------------- /flow/net/cocoa/response_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/cocoa/response_proxy.rb -------------------------------------------------------------------------------- /flow/net/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/config.rb -------------------------------------------------------------------------------- /flow/net/expectation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/expectation.rb -------------------------------------------------------------------------------- /flow/net/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/header.rb -------------------------------------------------------------------------------- /flow/net/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/mime_types.rb -------------------------------------------------------------------------------- /flow/net/net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/net.rb -------------------------------------------------------------------------------- /flow/net/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/response.rb -------------------------------------------------------------------------------- /flow/net/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/session.rb -------------------------------------------------------------------------------- /flow/net/stubbable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/net/stubbable.rb -------------------------------------------------------------------------------- /flow/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/store/README.md -------------------------------------------------------------------------------- /flow/store/android/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/store/android/store.rb -------------------------------------------------------------------------------- /flow/store/cocoa/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/store/cocoa/store.rb -------------------------------------------------------------------------------- /flow/task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/task/README.md -------------------------------------------------------------------------------- /flow/task/android/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/task/android/task.rb -------------------------------------------------------------------------------- /flow/task/cocoa/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/task/cocoa/task.rb -------------------------------------------------------------------------------- /flow/task/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/task/task.rb -------------------------------------------------------------------------------- /flow/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/README.md -------------------------------------------------------------------------------- /flow/ui/alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/alert.rb -------------------------------------------------------------------------------- /flow/ui/android/activity_indicator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/activity_indicator.rb -------------------------------------------------------------------------------- /flow/ui/android/alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/alert.rb -------------------------------------------------------------------------------- /flow/ui/android/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/application.rb -------------------------------------------------------------------------------- /flow/ui/android/button.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/button.rb -------------------------------------------------------------------------------- /flow/ui/android/camera.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/camera.rb -------------------------------------------------------------------------------- /flow/ui/android/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/color.rb -------------------------------------------------------------------------------- /flow/ui/android/control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/control.rb -------------------------------------------------------------------------------- /flow/ui/android/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/font.rb -------------------------------------------------------------------------------- /flow/ui/android/gesture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/gesture.rb -------------------------------------------------------------------------------- /flow/ui/android/gradient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/gradient.rb -------------------------------------------------------------------------------- /flow/ui/android/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/image.rb -------------------------------------------------------------------------------- /flow/ui/android/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/label.rb -------------------------------------------------------------------------------- /flow/ui/android/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/list.rb -------------------------------------------------------------------------------- /flow/ui/android/navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/navigation.rb -------------------------------------------------------------------------------- /flow/ui/android/screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/screen.rb -------------------------------------------------------------------------------- /flow/ui/android/shared_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/shared_text.rb -------------------------------------------------------------------------------- /flow/ui/android/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/text.rb -------------------------------------------------------------------------------- /flow/ui/android/text_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/text_input.rb -------------------------------------------------------------------------------- /flow/ui/android/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/ui.rb -------------------------------------------------------------------------------- /flow/ui/android/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/view.rb -------------------------------------------------------------------------------- /flow/ui/android/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/android/web.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/activity_indicator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/activity_indicator.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/alert.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/application.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/button.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/button.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/camera.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/camera.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/color.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/control.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/font.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/gesture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/gesture.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/gradient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/gradient.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/image.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/label.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/list.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/navigation.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/screen.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/shared_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/shared_text.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/text.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/text_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/text_input.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/ui.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/view.rb -------------------------------------------------------------------------------- /flow/ui/cocoa/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/cocoa/web.rb -------------------------------------------------------------------------------- /flow/ui/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/color.rb -------------------------------------------------------------------------------- /flow/ui/css_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/css_layout.h -------------------------------------------------------------------------------- /flow/ui/css_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/css_node.c -------------------------------------------------------------------------------- /flow/ui/eventable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/eventable.rb -------------------------------------------------------------------------------- /flow/ui/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/font.rb -------------------------------------------------------------------------------- /flow/ui/list_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/list_row.rb -------------------------------------------------------------------------------- /flow/ui/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/flow/ui/view.rb -------------------------------------------------------------------------------- /include/rubymotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/include/rubymotion.h -------------------------------------------------------------------------------- /lib/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/android.rb -------------------------------------------------------------------------------- /lib/cocoa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/cocoa.rb -------------------------------------------------------------------------------- /lib/common.rb: -------------------------------------------------------------------------------- 1 | FLOW_COMPONENTS = %w{net json digest store base64 location task ui} 2 | -------------------------------------------------------------------------------- /lib/motion-flow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/motion-flow.rb -------------------------------------------------------------------------------- /lib/motion-flow/base64.rb: -------------------------------------------------------------------------------- 1 | require_relative 'loader' 2 | Motion::Flow.load_library 'base64' 3 | -------------------------------------------------------------------------------- /lib/motion-flow/digest.rb: -------------------------------------------------------------------------------- 1 | require_relative 'loader' 2 | Motion::Flow.load_library 'digest' 3 | -------------------------------------------------------------------------------- /lib/motion-flow/json.rb: -------------------------------------------------------------------------------- 1 | require_relative 'loader' 2 | Motion::Flow.load_library 'json' 3 | -------------------------------------------------------------------------------- /lib/motion-flow/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/motion-flow/loader.rb -------------------------------------------------------------------------------- /lib/motion-flow/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/motion-flow/location.rb -------------------------------------------------------------------------------- /lib/motion-flow/net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/motion-flow/net.rb -------------------------------------------------------------------------------- /lib/motion-flow/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/motion-flow/store.rb -------------------------------------------------------------------------------- /lib/motion-flow/task.rb: -------------------------------------------------------------------------------- 1 | require_relative 'loader' 2 | Motion::Flow.load_library 'task' 3 | -------------------------------------------------------------------------------- /lib/motion-flow/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/lib/motion-flow/ui.rb -------------------------------------------------------------------------------- /motion-flow.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/motion-flow.gemspec -------------------------------------------------------------------------------- /samples/reddit/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/Gemfile -------------------------------------------------------------------------------- /samples/reddit/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/Gemfile.lock -------------------------------------------------------------------------------- /samples/reddit/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/Rakefile -------------------------------------------------------------------------------- /samples/reddit/app/android/main_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/android/main_activity.rb -------------------------------------------------------------------------------- /samples/reddit/app/android/timeline_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/android/timeline_adapter.rb -------------------------------------------------------------------------------- /samples/reddit/app/ios/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/ios/app_delegate.rb -------------------------------------------------------------------------------- /samples/reddit/app/osx/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/osx/app_delegate.rb -------------------------------------------------------------------------------- /samples/reddit/app/osx/menu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/osx/menu.rb -------------------------------------------------------------------------------- /samples/reddit/app/osx/reddit_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/osx/reddit_controller.rb -------------------------------------------------------------------------------- /samples/reddit/app/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/post.rb -------------------------------------------------------------------------------- /samples/reddit/app/post_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/post_row.rb -------------------------------------------------------------------------------- /samples/reddit/app/posts_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/posts_list.rb -------------------------------------------------------------------------------- /samples/reddit/app/posts_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/posts_screen.rb -------------------------------------------------------------------------------- /samples/reddit/app/reddit_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/app/reddit_fetcher.rb -------------------------------------------------------------------------------- /samples/reddit/config/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/config/android.rb -------------------------------------------------------------------------------- /samples/reddit/config/ios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/config/ios.rb -------------------------------------------------------------------------------- /samples/reddit/config/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/config/osx.rb -------------------------------------------------------------------------------- /samples/reddit/resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/resources/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/reddit/resources/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/resources/Default-667h@2x.png -------------------------------------------------------------------------------- /samples/reddit/resources/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/reddit/resources/Default-736h@3x.png -------------------------------------------------------------------------------- /samples/ui_demo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/Gemfile -------------------------------------------------------------------------------- /samples/ui_demo/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/Gemfile.lock -------------------------------------------------------------------------------- /samples/ui_demo/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/Rakefile -------------------------------------------------------------------------------- /samples/ui_demo/app/android/main_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/app/android/main_activity.rb -------------------------------------------------------------------------------- /samples/ui_demo/app/ios/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/app/ios/app_delegate.rb -------------------------------------------------------------------------------- /samples/ui_demo/app/welcome_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/app/welcome_screen.rb -------------------------------------------------------------------------------- /samples/ui_demo/config/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/config/android.rb -------------------------------------------------------------------------------- /samples/ui_demo/config/ios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/config/ios.rb -------------------------------------------------------------------------------- /samples/ui_demo/resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/resources/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/ui_demo/resources/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/resources/Default-667h@2x.png -------------------------------------------------------------------------------- /samples/ui_demo/resources/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/resources/Default-736h@3x.png -------------------------------------------------------------------------------- /samples/ui_demo/resources/Starjedi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/resources/Starjedi.ttf -------------------------------------------------------------------------------- /samples/ui_demo/resources/rubymotion-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/samples/ui_demo/resources/rubymotion-logo.png -------------------------------------------------------------------------------- /template/flow/files/.gitignore: -------------------------------------------------------------------------------- 1 | .repl_history 2 | build 3 | tags 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /template/flow/files/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/Gemfile -------------------------------------------------------------------------------- /template/flow/files/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/Rakefile -------------------------------------------------------------------------------- /template/flow/files/app/android/main_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/app/android/main_activity.rb -------------------------------------------------------------------------------- /template/flow/files/app/ios/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/app/ios/app_delegate.rb -------------------------------------------------------------------------------- /template/flow/files/config/android.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/config/android.rb.erb -------------------------------------------------------------------------------- /template/flow/files/config/ios.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/config/ios.rb.erb -------------------------------------------------------------------------------- /template/flow/files/config/osx.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/config/osx.rb.erb -------------------------------------------------------------------------------- /template/flow/files/resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/resources/Default-568h@2x.png -------------------------------------------------------------------------------- /template/flow/files/resources/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/resources/Default-667h@2x.png -------------------------------------------------------------------------------- /template/flow/files/resources/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/template/flow/files/resources/Default-736h@3x.png -------------------------------------------------------------------------------- /test/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/Gemfile -------------------------------------------------------------------------------- /test/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/Gemfile.lock -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/README.md -------------------------------------------------------------------------------- /test/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/Rakefile -------------------------------------------------------------------------------- /test/app/android/main_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/app/android/main_activity.rb -------------------------------------------------------------------------------- /test/app/ios/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/app/ios/app_delegate.rb -------------------------------------------------------------------------------- /test/app/osx/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/app/osx/app_delegate.rb -------------------------------------------------------------------------------- /test/config/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/config/android.rb -------------------------------------------------------------------------------- /test/config/ios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/config/ios.rb -------------------------------------------------------------------------------- /test/config/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/config/osx.rb -------------------------------------------------------------------------------- /test/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/server.rb -------------------------------------------------------------------------------- /test/spec/base64_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/base64_spec.rb -------------------------------------------------------------------------------- /test/spec/digest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/digest_spec.rb -------------------------------------------------------------------------------- /test/spec/helpers/android/constants.rb: -------------------------------------------------------------------------------- 1 | HTTP_SERVER = "http://10.0.2.2:4567" 2 | -------------------------------------------------------------------------------- /test/spec/helpers/cocoa/constants.rb: -------------------------------------------------------------------------------- 1 | HTTP_SERVER = "http://localhost:4567" 2 | -------------------------------------------------------------------------------- /test/spec/json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/json_spec.rb -------------------------------------------------------------------------------- /test/spec/net/authorization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net/authorization_spec.rb -------------------------------------------------------------------------------- /test/spec/net/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net/config_spec.rb -------------------------------------------------------------------------------- /test/spec/net/expectation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net/expectation_spec.rb -------------------------------------------------------------------------------- /test/spec/net/header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net/header_spec.rb -------------------------------------------------------------------------------- /test/spec/net/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net/response_spec.rb -------------------------------------------------------------------------------- /test/spec/net/session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net/session_spec.rb -------------------------------------------------------------------------------- /test/spec/net_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/net_spec.rb -------------------------------------------------------------------------------- /test/spec/store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/store_spec.rb -------------------------------------------------------------------------------- /test/spec/task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/task_spec.rb -------------------------------------------------------------------------------- /test/spec/ui/color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/ui/color_spec.rb -------------------------------------------------------------------------------- /test/spec/ui/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/ui/label.rb -------------------------------------------------------------------------------- /test/spec/ui/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HipByte/Flow/HEAD/test/spec/ui/view.rb --------------------------------------------------------------------------------