Sha256: 2b2d40263cfc981c17b79e5597ff31347fea24b237468e3c562439b7fa353249
Contents?: true
Size: 952 Bytes
Versions: 133
Compression:
Stored size: 952 Bytes
Contents
module RubyApp module Elements module Mobile module Pages module Information require 'ruby_app/elements/mobile/pages/information/information_list' class SessionsList < RubyApp::Elements::Mobile::Pages::Information::InformationList class SessionsListItem < RubyApp::Elements::Mobile::Pages::Information::InformationList::InformationListItem template_path(:all, File.dirname(__FILE__)) alias :session :item def initialize(session) super(session) end end template_path(:all, File.dirname(__FILE__)) def initialize super self.items = RubyApp::Session.sessions.values.collect { |session| RubyApp::Elements::Mobile::Pages::Information::SessionsList::SessionsListItem.new(session) } end end end end end end end
Version data entries
133 entries across 133 versions & 1 rubygems