Skip to content

Commit 95ef7cb

Browse files
author
graial
committed
2 parents 37e23a0 + 041b7eb commit 95ef7cb

5 files changed

Lines changed: 84 additions & 47 deletions

File tree

_data/conferences.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3230,6 +3230,13 @@
32303230
cfp_close_date: 2025-06-30
32313231
cfp_link: https://www.papercall.io/rubyconfth2026
32323232

3233+
- name: Ruby for Good - Belgium 2026
3234+
location: Ghent, Belgium
3235+
start_date: 2026-02-02
3236+
end_date: 2026-02-04
3237+
url: https://rubyinghent.org
3238+
announced_on: 2025-10-01
3239+
32333240
- name: RBQ Conf 2026
32343241
location: Austin, TX
32353242
start_date: 2026-03-31
@@ -3246,6 +3253,9 @@
32463253
twitter: tropicalonrails
32473254
mastodon: https://ruby.social/@tropicalonrails
32483255
announced_on: 2025-04-30
3256+
cfp_link: https://cfp.tropicalonrails.com
3257+
cfp_open_date: 2025-12-05
3258+
cfp_close_date: 2026-01-10
32493259

32503260
- name: wroclove.rb 2026
32513261
location: Wrocław, Poland
@@ -3268,6 +3278,15 @@
32683278
mastodon: https://ruby.social/@rubykaigi
32693279
announced_on: 2025-04-18
32703280

3281+
- name: Blue Ridge Ruby 2026
3282+
location: Asheville, NC
3283+
start_date: 2026-04-30
3284+
end_date: 2026-05-01
3285+
url: https://blueridgeruby.com
3286+
twitter: blueridgeruby
3287+
mastodon: https://ruby.social/@blueridgeruby
3288+
announced_on: 2025-12-12
3289+
32713290
- name: Rubycon 2026
32723291
location: Rimini, Italy
32733292
start_date: 2026-05-08
@@ -3317,6 +3336,28 @@
33173336
twitter: balticruby
33183337
mastodon: https://ruby.social/@balticruby
33193338
announced_on: 2025-09-02
3339+
cfp_open_date: 2025-09-04
3340+
cfp_close_date: 2025-12-31
3341+
cfp_link: "https://www.papercall.io/balticruby2026"
3342+
3343+
- name: RubyConf Africa 2026
3344+
location: Nairobi, Kenya
3345+
start_date: 2026-08-21
3346+
end_date: 2026-08-22
3347+
url: https://rubyconf.africa/
3348+
twitter: ruby_african
3349+
announced_on: 2025-11-06
3350+
cfp_open_date: 2025-11-20
3351+
cfp_close_date: 2026-03-11
3352+
cfp_link: https://www.papercall.io/ruby-conf-africa-2026
3353+
3354+
- name: Rails Camp West 2026
3355+
location: Otis, OR
3356+
start_date: 2026-09-07
3357+
end_date: 2026-09-11
3358+
url: https://west.railscamp.us/2026
3359+
twitter: railscamp_usa
3360+
announced_on: 2025-11-13
33203361

33213362
- name: Rails World 2026
33223363
location: Austin, TX

_data/meetup_groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@
946946
name: The Sacramento Ruby Meetup
947947
service: meetupdotcom
948948

949-
- id: saigonrb
949+
- id: saigonrb # and: saigon-rb
950950
name: Saigon.rb
951951
service: meetupdotcom
952952

cfp/index.html

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
---
22
layout: default
33
---
4-
<article id="home">
5-
<dl>
6-
{% assign now = site.time | date: '%s' | plus: 0 %}
7-
{% assign today = site.time | date: '%Y-%m-%d' %}
8-
{% assign conferences = site.data.conferences | sort: 'cfp_close_date' %}
9-
10-
{% for event in conferences %}
11-
{% assign start_date = event.start_date | date: '%s' | plus: 0 %}
12-
{% assign cfp_close_timestamp = event.cfp_close_date | date: '%s' | plus: 0 %}
13-
{% assign cfp_close_date = event.cfp_close_date | date: '%Y-%m-%d' %}
14-
15-
{% if start_date >= now and cfp_close_timestamp >= now or cfp_close_date == today %}
16-
{% include event.html %}
17-
{% endif %}
18-
{% endfor %}
19-
</dl>
4+
<style>
5+
#home a { font-weight: bold; }
6+
#home p { margin-bottom: 12px; }
7+
</style>
8+
<article id="home" style="color: #333;">
9+
<p>
10+
RubyConferences.org and RubyVideo.dev have merged into <a href="https://www.rubyevents.org">RubyEvents.org</a>, the new central platform for all things Ruby events.
11+
</p>
12+
<p>
13+
The CFP page has moved to <a href="https://www.rubyevents.org/cfp">here</a>.
14+
</p>
15+
<p>
16+
<a href="https://marcoroth.dev/posts/introducing-rubyevents-org">Read the full announcement</a>
17+
</p>
2018
</article>

index.html

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
---
22
layout: default
33
---
4-
<article id="home">
5-
<dl>
6-
{% assign now = site.time | date: '%s' | plus: 0 %}
7-
{% assign today = site.time | date: '%Y-%m-%d' %}
8-
{% assign conferences = site.data.conferences | sort: "start_date" %}
9-
{% assign item_name = "conference" %}
10-
11-
{% include filters.html %}
12-
13-
{% for event in conferences %}
14-
{% assign start_date = event.start_date | date: '%s' | plus: 0 %}
15-
{% if start_date > now %}
16-
{% include event.html %}
17-
{% endif %}
18-
{% endfor %}
19-
</dl>
4+
<style>
5+
#home a { font-weight: bold; }
6+
#home p { margin-bottom: 12px; }
7+
</style>
8+
<article id="home" style="color: #333;">
9+
<p>
10+
RubyConferences.org and RubyVideo.dev have merged into <a href="https://www.rubyevents.org">RubyEvents.org</a>, the new central platform for all things Ruby events.
11+
</p>
12+
<p>
13+
The conferences page has moved to <a href="https://www.rubyevents.org/events">here</a>.
14+
</p>
15+
<p>
16+
<a href="https://marcoroth.dev/posts/introducing-rubyevents-org">Read the full announcement</a>
17+
</p>
2018
</article>

past/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
22
layout: default
33
---
4-
<article id="past">
5-
<dl>
6-
{% assign now = site.time | date: '%s' | plus: 0 %}
7-
{% assign item_name = "conference" %}
8-
9-
{% include filters.html %}
10-
11-
{% for event in site.data.conferences reversed %}
12-
{% assign start_date = event.start_date | date: '%s' | plus: 0 %}
13-
{% if start_date < now %}
14-
{% include event.html %}
15-
{% endif %}
16-
{% endfor %}
17-
</dl>
4+
<style>
5+
#past a { font-weight: bold; }
6+
#past p { margin-bottom: 12px; }
7+
</style>
8+
<article id="past" style="color: #333;">
9+
<p>
10+
RubyConferences.org and RubyVideo.dev have merged into <a href="https://www.rubyevents.org">RubyEvents.org</a>, the new central platform for all things Ruby events.
11+
</p>
12+
<p>
13+
The past conferences page has moved to <a href="https://www.rubyevents.org/events/past">here</a>. You can also browse the full <a href="https://www.rubyevents.org/events/archive">archive</a>.
14+
</p>
15+
<p>
16+
<a href="https://marcoroth.dev/posts/introducing-rubyevents-org">Read the full announcement</a>
17+
</p>
1818
</article>

0 commit comments

Comments
 (0)