Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions rubycon.it/_data/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,12 @@
- clock: "20:00"
description: "Dinner + Toga Party! @ Bagno 46"
tag: "Dinner"
- date: 2026-05-09
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

According to the repository style guide (rules 50, 51, and 78), every change must be accompanied by a version increment in rubycon.it/_config.yml and an entry in CHANGELOG.md (including the coder's name). These updates are missing from the current pull request.

References
  1. Update version in _config.yml and CHANGELOG.md for every change. (link)

events:
- clock: "10:00"
description: "🚶 Guided tour of Rimini old town"
tag: "Social"

- clock: "11:30"
description: "🌊 Walk to the Mouth of the Rubicon, where the river meets the sea"
tag: "Social"
11 changes: 11 additions & 0 deletions rubycon.it/_includes/dsl/content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,14 @@
where: "🏖️ Bagno 46"
# url: "https://www.bagno46rimini.com/"
end

# ── Saturday ──────────────────────────────────────────
# Social activities (included in the ticket)

Rubycon::Agenda.schedule(Date.new(2026, 5, 9)) do
social at: 10_00,
desc: "🚶 Guided tour of Rimini old town"

social at: 11_30,
desc: "🌊 Walk to the Mouth of the Rubicon, where the river meets the sea"
end
4 changes: 4 additions & 0 deletions rubycon.it/_includes/dsl/definition.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ def dinner(at:, desc:, by: nil, where: nil, url: nil)
row(at, desc, by, "Dinner")
end

def social(at:, desc:, by: nil)
row(at, desc, by, "Social")
end
Comment thread
a-chris marked this conversation as resolved.

def print_agenda
@rows.each_with_index do |row, i|
time = row[:time]
Expand Down