-
Notifications
You must be signed in to change notification settings - Fork 4
improve agenda layout #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,45 +2,69 @@ | |
|
|
||
| # Riccardo loves Ruby DSL even more than my very first aDSL! | ||
|
|
||
| Rubycon::Schedule.agenda_of_the_day(Date.new(2026, 5, 8)) do | ||
|
|
||
| check_in at: "08:30", desc: "Check-in & Welcome Coffee" | ||
|
|
||
| talk at: "09:30", desc: "Opening Remarks", by: "Riccardo Carlesso" | ||
|
|
||
| # Note, we might have a different keynote speaker | ||
| talk at: "09:45", by: "Carmine Paolino", | ||
| title: "Ruby Is the Best Language for Building AI Web Apps" | ||
| talk at: "10:30", by: "Julia Lopez", title: "Debugging Techniques in Ruby:" + | ||
| "You still need to understand how the code works!" | ||
|
|
||
| pause at: "11:15", desc: "☕ Coffee Break" | ||
|
|
||
| talk at: "11:30", by: "Marco Roth", | ||
| title: something_on(:Herb, :ReActionView) | ||
| talk at: "12:15", title: "Speech #4" # TBD | ||
|
|
||
| pause at: "13:00", desc: "🍝 Lunch Break & Networking" | ||
|
|
||
| Rubycon::Agenda.schedule(Date.new(2026, 5, 8)) do | ||
|
|
||
| check_in at: "08:30", | ||
| desc: "Check-in & Welcome Coffee" | ||
|
Comment on lines
+7
to
+8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The indentation of the DSL method calls is inconsistent. This check_in at: "08:30",
desc: "Check-in & Welcome Coffee" |
||
|
|
||
| talk at: "09:30", | ||
| desc: "Opening Remarks", | ||
| by: "Riccardo Carlesso" | ||
|
|
||
| talk at: "09:45", | ||
| by: "Carmine Paolino", | ||
| title: "Ruby Is the Best Language for Building AI Web Apps" | ||
|
|
||
| talk at: "10:30", | ||
| by: "Julia Lopez", | ||
| title: "Debugging Techniques in Ruby: You still need to understand how the code works!" | ||
|
|
||
| pause at: "11:15", | ||
| desc: "☕️ Coffee Break" | ||
|
|
||
| talk at: "11:30", | ||
| by: "Marco Roth", | ||
| title: something_on(:Herb, :ReActionView) | ||
|
|
||
| talk at: "12:15", | ||
| title: "Speech #4" | ||
|
|
||
| pause at: "13:00", | ||
| desc: "🍝 Lunch Break & Networking" | ||
|
|
||
| # We want to give everyone the chance to say/bring something for 5 minutes. | ||
| lightning_talks at: "14:30", desc: "5m for everyone who has something to say" , | ||
| tags: %w{ FIFO } | ||
| talk at: "15:15", title: "Speech #5" | ||
|
|
||
| pause at: "16:00", desc: "☕ Coffee Break" | ||
|
|
||
| talk at: "16:15", title: "Speech #6" | ||
| talk at: "17:00", title: "Speech #7" | ||
| talk at: "17:45", title: "It's a wrap!", by: "Riccardo, Emiliano, and the team" | ||
|
|
||
| # Here everyone will be free to do what they want. Keep the conversation going, | ||
| # or refill the battiries in the hotel, whatever you prefer. | ||
| pause at: "18:00", desc: "Drinks or Shower or Nap", tags: %w{optional} | ||
|
|
||
| # Here we will have dinner, and then the Toga Party! | ||
| lightning_talks at: "14:30", | ||
| desc: "⚡️ 5m for everyone who has something to say" , | ||
| tags: %w{ FIFO } | ||
|
Comment on lines
+36
to
+38
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| talk at: "15:15", | ||
| title: "Speech #5" | ||
|
|
||
| pause at: "16:00", | ||
| desc: "☕ Coffee Break" | ||
|
|
||
| talk at: "16:15", | ||
| title: "Speech #6" | ||
|
|
||
| talk at: "17:00", | ||
| title: "Speech #7" | ||
|
|
||
| talk at: "17:45", | ||
| title: "It's a wrap!", | ||
| by: "Riccardo, Emiliano, and the team" | ||
|
|
||
| # Keep the conversation going, or refill | ||
| # the batteries in the hotel, whatever you prefer. | ||
| pause at: "18:00", | ||
| desc: "Drinks or Shower or Nap", | ||
| tags: %w{optional} | ||
|
|
||
| # Here we will have dinner, and then the Toga Party! | ||
| # The place is 10m walk from the hotel. | ||
| party at: "20:00", desc: "🍝 Dinner + 🎉 Toga Party!", by: "All", | ||
| where: '🏖️ Bagno 46', url: 'https://www.bagno46rimini.com/' | ||
| party at: "20:00", | ||
| desc: "🍝 Dinner + 🎉 Toga Party!", | ||
| where: '🏖️ Bagno 46', | ||
| url: 'https://www.bagno46rimini.com/' | ||
|
Comment on lines
+64
to
+67
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The party at: "20:00",
desc: "🍝 Dinner + 🎉 Toga Party!",
where: '🏖️ Bagno 46' |
||
| end | ||
|
|
||
| # Titles being refined here: https://github.com/palladius/rubycon.it/issues/74 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,7 @@ | |
| .highlight { | ||
| background: #ffffff; | ||
| color: #333333; | ||
| font-size: 90%; | ||
| } | ||
|
|
||
| .highlight .c { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The class
Rubycon::Agendaand its methodscheduledo not appear to be defined. According to_includes/dsl/definition.rb, the correct invocation should beRubycon::Schedule.agenda_of_the_day. This error will cause aNameErrorand break the page.