noelrappin / tank-engine

A new plugin for creating Rails applications targeted for iPhones. A successor to rails_iui

This URL has Read+Write access

noelrappin (author)
Tue Dec 09 12:05:14 -0800 2008
commit  cd20398221e5405bedae18a35592bb1a95a97d56
tree    e4d860373e3f99852ef31f0be53780c3bbe97ed7
parent  478057ca67deed3f35fdbb7b2f6e6777448b109c
tank-engine / lib / list_model.rb
100644 9 lines (8 sloc) 0.154 kb
1
2
3
4
5
6
7
8
9
class ListModel
  attr_accessor :caption, :url, :obj
  
  def initialize(obj, caption, url)
    @obj = obj
    @caption = caption
    @url = url
  end
end