File: nested_objects.rb

package info (click to toggle)
ruby-mustache 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, trixie
  • size: 480 kB
  • sloc: ruby: 2,267; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'mustache'
require 'ostruct'

class NestedObjects < Mustache
  self.path = File.dirname(__FILE__)

  def header
    "Colors"
  end

  def item
    items = []
    items << OpenStruct.new(:name => 'red', :current => true, :url => '#Red')
    items << OpenStruct.new(:name => 'green', :current => false, :url => '#Green')
    items << OpenStruct.new(:name => 'blue', :current => false, :url => '#Blue')
    items
  end

  def link
    not self[:current]
  end

  def list
    not item.empty?
  end

  def empty
    item.empty?
  end
end

if $0 == __FILE__
  puts NestedObjects.to_html
end