Skip to content

Commit

Permalink
Add RubyConf 2024 schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoroth committed Dec 13, 2024
1 parent 0fcf510 commit 310915c
Show file tree
Hide file tree
Showing 3 changed files with 673 additions and 361 deletions.
4 changes: 2 additions & 2 deletions app/views/events/schedules/_day.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
<% if item.is_a?(String) %>
<span class="text-center"><%= item %></span>
<% else %>
<b class="text-center"><%= item.fetch("title", "no title") %></b>
<b class="text-center"><%= item&.fetch("title").presence || "no title" %></b>
<div class="prose text-sm mt-3">
<%= markdown_to_html(item.fetch("description", "-")) %>
<%= markdown_to_html(item&.fetch("description").presence || "-") %>
</div>
<% end %>
</div>
Expand Down
206 changes: 206 additions & 0 deletions data/rubyconf/rubyconf-2024/schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
# Schedule: https://rubyconf.org/schedule/
# Embed: https://sessionize.com/api/v2/3nqsadrc/view/GridSmart?under=True

days:
- name: "Day 1"
date: "2024-11-13"
grid:
- start_time: "08:30"
end_time: "10:00"
slots: 1
items:
- Registration & Breakfast

- start_time: "09:15"
end_time: "09:25"
slots: 1

- start_time: "09:25"
end_time: "09:27"
slots: 1

- start_time: "09:27"
end_time: "09:30"
slots: 1

- start_time: "09:30"
end_time: "10:30"
slots: 1

- start_time: "10:30"
end_time: "10:45"
slots: 1
items:
- Break

- start_time: "10:45"
end_time: "11:15"
slots: 4

- start_time: "11:15"
end_time: "11:20"
slots: 1
items:
- Break

- start_time: "11:30"
end_time: "12:00"
slots: 4

- start_time: "12:00"
end_time: "12:15"
slots: 1
items:
- Break

- start_time: "12:15"
end_time: "12:45"
slots: 4

- start_time: "12:45"
end_time: "14:15"
slots: 1
items:
- Lunch

- start_time: "14:30"
end_time: "15:00"
slots: 5

- start_time: "15:00"
end_time: "15:15"
slots: 1
items:
- Break

- start_time: "15:15"
end_time: "15:45"
slots: 5

- start_time: "15:45"
end_time: "16:00"
slots: 1
items:
- Break

- start_time: "16:00"
end_time: "16:30"
slots: 3

- start_time: "16:30"
end_time: "16:45"
slots: 1
items:
- Break

- start_time: "16:45"
end_time: "17:45"
slots: 1

- start_time: "17:45"
end_time: "17:45"
slots: 1
items:
- Closing

- name: "Day 2 (Hack Day)"
date: "2024-11-14"
grid:
- start_time: "10:00"
end_time: "11:00"
slots: 1

- start_time: "11:15"
end_time: "13:45"
slots: 3

- start_time: "13:30"
end_time: "15:30"
slots: 1
items:
- Working Lunch

- start_time: "15:45"
end_time: "17:45"
slots: 2

- start_time: "18:15"
end_time: "19:45"
slots: 1

- start_time: "12:20"
end_time: "14:20"
slots: 1
items:
- title: Happy Hour & Kick it with Sidekiq at Game Night!
description: |-
Game night is ON! This is a B.Y.O.G. (Bring Your Own Game) special event space where you can get together, drink, snack, and play with #RubyFriends for the night. **Please NO games that include throwing or kicking objects!** Located in the Expo Spaces in Salon A Sponsored by Mike Perham (Sidekiq)
- name: "Day 3"
date: "2024-11-15"
grid:
- start_time: "08:00"
end_time: "08:45"
slots: 1
items:
- Breakfast

- start_time: "08:45"
end_time: "09:45"
slots: 1

- start_time: "09:45"
end_time: "10:00"
slots: 1
items:
- Break

- start_time: "10:00"
end_time: "10:30"
slots: 3

- start_time: "10:30"
end_time: "10:45"
slots: 1
items:
- Break

- start_time: "10:45"
end_time: "11:15"
slots: 3

- start_time: "11:15"
end_time: "11:30"
slots: 1
items:
- Break

- start_time: "11:30"
end_time: "12:00"
slots: 2

- start_time: "12:00"
end_time: "14:00"
slots: 1
items:
- Lunch

- start_time: "14:00"
end_time: "15:00"
slots: 1

- start_time: "15:00"
end_time: "15:15"
slots: 1

- start_time: "15:30"
end_time: "17:30"
slots: 1
items:
- title: Closing Social
description: |-
End the evening with your Ruby Friends with a wonderful closing reception social. We would love to have you join us for a final send-off~
tracks:
- name: "Supporter Talk"
color: "#E1CD00"
Loading

0 comments on commit 310915c

Please sign in to comment.