Sha256: 259d9ea282a81622fe0466ccfed44f448dd1cabcde1db8d25a1db04042672499

Contents?: true

Size: 620 Bytes

Versions: 9

Compression:

Stored size: 620 Bytes

Contents

# An example of how to define a screen group
# Hippo::Screen.define_group 'appy-app-screens' do | group |
#     group.title       = "AppyApp Screens"
#     group.description = "Screens relating to AppyApp"
#     group.icon        = "heart"
# end

Hippo::Screen.for_extension 'appy-app' do | screens |
    screens.define "ready-set-go" do | screen |
        screen.title       = "Ready Set Go"
        screen.description = ""
        screen.icon        = ""
        screen.group_id    = ""
        screen.model_class = ""
        screen.view_class  = "ReadySetGo"
        screen.asset       = "ready-set-go"
    end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hippo-fw-0.9.9 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.8 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.7 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.6 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.5 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.4 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.3 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.2 command-reference-files/screen/config/screens.rb
hippo-fw-0.9.1 command-reference-files/screen/config/screens.rb