Class: Playa::StartupView
- Inherits:
-
Vedeu::View
- Object
- Vedeu::View
- Playa::StartupView
- Defined in:
- lib/playa/views/startup_view.rb
Instance Method Summary collapse
Instance Method Details
#render ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/playa/views/startup_view.rb', line 3 def render views do view 'progress' do line do text 'Welcome to Playa.' end end view 'playlist' do line do text 'An mp3 player in your console.' end end view 'status' do line do text 'Press `s` to begin.' end end end end |