Everyday Rails

Mobile Rails applications, part 1: An overview

By Aaron Sumner, August 22, 2010.

I’ve spent some time over the last week learning more about creating mobile versions of Rails applications. In the past, I’ve created mobile applications that cater to the lowest common denominator—that is, non-Webkit-based mobile browsers with limited or nonexistent support for CSS or Javascript. This time around, I want to maintain support for these older devices, but also take advantage of the fact that a rapidly growing number of mobile devices do support these common web standards. Here’s a summary of what I’ve looked at so far, in the hopes that (a) it helps others in the same boat as me, and (b) it will solicit advice from people who have accomplished this themselves.

Mobile Fu

The Mobile Fu plugin for Rails is an easy way to quickly get a mobile version of your application up and running. Mobile Fu detects if a user is coming from a mobile device, and if so, returns a mobile-friendly view and CSS instead of standard ones. You just need to add a line to your application_controller.rb file, add the :iphone MIME type, and create mobile-specific views. Mobile Fu will also render any platform-specific CSS you create. This means you can use separate CSS depending on whether your app is being viewed on an iPhone, iPad, Blackberry, etc.—very useful, potentially. This is the method I used to create a basic mobile version of a data collection tool at my day job, allowing school administrators to observe classrooms and record what they see using their phones. How to get this started is all lined out well in the plugin’s README.

Moving beyond this basic functionality, though, became frustrating for me. As I mentioned, I want the next iteration of my app in question to be savvy about the capabilities of different mobile devices, and render accordingly. Basic issues aside, the documentation for Mobile Fu is unfortunately sparse. I found a few useful methods within the code, but they didn’t work quite the way I wanted to. I never could get the plugin to work with the jQTouch mobile Javascript framework (more on that in a minute), and as noted in an issue in Mobile Fu’s GitHub repository (and another), the plugin doesn’t play nice with other MIME types such as JSON. This isn’t an issue for me right now, but will be in future iterations. So I began looking elsewhere.

Railscasts episode

In lieu of any other drop-in solutions, the next best route may be to roll your own mobile-enabling code. As it turns out, it’s not that hard—a Railscasts episode on mobile websites covers the requirements, using largely the same approach as Mobile Fu, but adds some additional functionality that Mobile Fu doesn’t explicitly provide. In particular, Ryan Bates shows how to allow users to switch between the mobile version and the standard version. It also looks like it will be easier to augment with my own code, such as:

  • Mobile detection: Ryan’s regular expression might be worth revisiting. It may be possible to borrow from Mobile Fu’s detection to make this more thorough, and hopefully return more specific device types.
  • Check for Javascript-ready browsers: I’d like to know whether I can deliver a browser a fancy version or just return a no-frills mobile format. Maybe I should just stick to WebKit for the fancy version?
  • Check for iPads and tablets: I see this becoming more important moving forward. Depending on the app, I may not even want to bother with a mobile version when rendering for a tablet’s larger screen.

If these aren’t issues for you, and you just want to create a mobile site that will work on Webkit-based devices, watch the Railscasts episode and you’re well on your way.

jQTouch

In the Railscasts episode above, jQTouch is briefly mentioned and shown as a way to deliver native-like iPhone apps using a jQuery-based Javascript framework. Based on the recommendation, I spent some time hacking around with it, but it wasn’t until I watched an hour-long Peepcode episode dedicated to jQTouch that I began to figure things out. The episode is definitely worth the 9 dollars. As it turns out, jQTouch works best with AJAX, so I’ll need to revisit my controllers and update as needed. Based on the examples and the tutorial, this extra work will be worth it.

There are other frameworks for mobile Javascript—jQTouch is just what I’m working with right now. Last week Mashable put together a list of mobile Javascript frameworks. This is just an overview, and it’s not Rails-specific, but will give you an idea of the potential of each framework.

What’s next

My next steps, which I plan to document here in the coming days, are to refine some of my understanding of jQTouch with Rails (specifically form handling) and figure out what styles are missing from the default jQTouch templates (I’m using the Apple theme instead of the jQT theme; its brighter look will appeal more to my audience). From there I want to get into a more advanced mobile browser check to determine which version of my mobile site to send to a given device. To be continued, but if you have questions or suggestions in the meantime please share them.

Update: part two of this series is now available.

What do you think? Follow along on on Mastodon, Facebook, or Bluesky to let me know what you think and catch my latest posts. Better yet, subscribe to my newsletter for updates from Everyday Rails, book picks, and other thoughts and ideas that didn't quite fit here.
Buy Me A Coffee

Test with confidence!

If you liked my series on practical advice for adding reliable tests to your Rails apps, check out the expanded ebook version. Lots of additional, exclusive content and a complete sample Rails application.

Newsletter

Ruby on Rails news and tips, and other ideas and surprises from Aaron at Everyday Rails. Delivered to your inbox on no particular set schedule.