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