+ All Categories
Home > Documents > Building Mobile Apps with Rhodes

Building Mobile Apps with Rhodes

Date post: 05-Jan-2016
Category:
Upload: senta
View: 17 times
Download: 0 times
Share this document with a friend
Description:
Building Mobile Apps with Rhodes. Adam Blum [email protected] http://rhomobile.com. The Rhomobile Mission. Mobilize enterprise apps… cost-effectively with a great user experience. provide the high level productivity and portability of web programming - PowerPoint PPT Presentation
16
Adam Blum adam@rhomobile. com http://rhomobile.com
Transcript
Page 1: Building Mobile Apps with Rhodes

Adam [email protected]://rhomobile.com

Page 2: Building Mobile Apps with Rhodes

The Rhomobile Mission

Mobilize enterprise apps… cost-effectively witha great user experience. -provide the high level productivity and portability of

web programming- with device optimization and offline capability of “native mobile apps”- open source for rapid adoption by developers

Page 3: Building Mobile Apps with Rhodes

Background

- Smartphones sales are exploding- Five major smartphone operating systems: iPhone, BlackBerry, Windows Mobile, Symbian, Android

- Growth leaders are installed base laggards- “native apps” have won the day

-500 million iPhone app downloads on a platform with great browser installed

But …how do you write an app for all popular devices?

Page 4: Building Mobile Apps with Rhodes

A Better Way… Rhomobile

- Build the app quickly in HTML and Ruby- Write it once and it runs on all smartphones- Work with synced local data- Exploit device capabilities (GPS, PIM data)- Available open source: http://github.com/rhomobile

Page 5: Building Mobile Apps with Rhodes

The Rhomobile Components

Rhodes “microframework” for building locally

executing natively optimized mobile apps Developers run app generator for their objects

of interest and then edit HTML templates Contains first mobile Ruby implementation

RhoSync Sync focused on web service data (needed in

the age of SaaS) Handles keeping your data local on the device

Page 6: Building Mobile Apps with Rhodes

Rhodes Architecture

RhoSyncServer

RhoSyncServer

synced data(SQLite)

synced data(SQLite)

Rhodes app

RhoSync client

RhoSync clientweb serverweb server

ORM (Rhom)

ORM (Rhom)

Rhodes runtime

browsercontrolbrowsercontrol

Rubyinterpreter

Rubyinterpreter

HTML (ERB)

templates

HTML (ERB)

templates

modelcontroll

ercontroll

er

model HTML (ERB)

templates

HTML (ERB)

templates

controller

controller

Backendapp

Backendapp

mobile device

sourceadaptersourceadapter

sourceadapter

Backendapp

Backendapp

model

model

We provide:We provide:

Using third party

components

Using third party

components

You write

Page 7: Building Mobile Apps with Rhodes

Rhodes Apps Rhomobile provides sample apps

SugarCRM Siebel Field Service Lighthouse

Third party appsTrailGuide (Basecamp) - Carry the Day Mobile Lighthouse – VDG Group

Page 8: Building Mobile Apps with Rhodes

Building a Rhodes App

• Get your data (RhoSync)• Create a sync source• Define your sync source adapter code• Test it from the RhoSync web interface

• Generate your app (RhoGen)• Generate an app (in the Rhodes \apps subdirectory)• Generate scaffold code for the model

• Develop your app (Ruby/HTML editor of choice)• Edit your model controllers• Edit your HTML templates (ERB file)

• Build, test, deploy (development environment for device) • Build your app• Test your app• Make available for download (or submit to an

AppStore)

Page 9: Building Mobile Apps with Rhodes

RhoSync Architecture

RhoSync

Server

RhoSync

ServerRhodesruntimeRhodesruntime

your appyour app

other appbackendsother appbackends

SugarCRMSugarCRM

SiebelSiebel

SalesForce

SalesForce

BaseCamp

BaseCamp

SOAP

SOAP

SOAP

REST

REST

Page 10: Building Mobile Apps with Rhodes

Defining a Rhosync Source

Provide a Source Adapter class with• login- authentication code for the backend• query - retrieve or read's objects from the

backend source• sync - take apart these objects and put

them into a "property bag” • create • update• delete• logoff

Page 11: Building Mobile Apps with Rhodes

Generated Source Adapter Class

class <%=name%> < SourceAdapter def initialize(source) super end

def login #TODO: Write some code here end

def query # TODO: write some code here end

def sync # usually the generic base class sync does the job super end

def create(name_value_list) #TODO: write some code here end

def update(name_value_list) #TODO: write some code here end

def delete(name_value_list) #TODO: write some code here if applicable end

def logoff #TODO: write some code here if applicable end

end

Page 12: Building Mobile Apps with Rhodes

Generate Your Rhodes App

Generate your app

rhogen app accountapp

Creates…

application.rbindex.html

Generate your modelcd accountapprhogen model account http://rhosync.rhohub.com/sources/1 1 name,industry

Creates…controller.rbconfig.rbindex.erbnew.erbedit.erb

Page 13: Building Mobile Apps with Rhodes

Edit A View<form title="Edit Account" class="panel" id="account_edit_form" method="POST"

action="<%=url_for('update')%>"> <fieldset> <input type="hidden" name="id" value="<%[email protected]%>"/> <div class="row"> <label>Name: </label> <input type="text" name="account[name]" value="<%[email protected]%>"/> </div> <div class="row"> <label>Industry: </label> <select name="account[industry]"> <%@industries.each do |i|%> <option value=<%=i%> <%if @account.industry==i%> selected<%end%>><%=i%> </option> <%end%> </select> </div> </fieldset> <input type="submit" value="Update"/>

</form>

Page 14: Building Mobile Apps with Rhodes

Platform Status

• 0.2 released January 7th

• Added Symbian support, PIM contact access• 0.3: end of January

• Rake-based builds• Callbacks in RhoSync• Layouts

• 1.0 release: February 28th• Android • Device capabilities:

• Camera• SMS

• Hosted services

Page 15: Building Mobile Apps with Rhodes

App Development Contest

$10000 for best app built on Rhodes Runner up prizes of free smartphones

Requirements Open source your app on http://github Must use Rhodes

Criteria Usability of app Maintainability of code Use of device capabilities

Deadline: April 30 Awards May 15

Details at http://rhomobile.com/contest

Page 16: Building Mobile Apps with Rhodes

Why Rhomobile?

Declarative tag-based approach (web programming) is more productive

Rich client against local data much better than remote web apps

Write it once and it works on all smartphones

Open source from the ground up http://rhomobile.com


Recommended