Skip to content

Commit

Permalink
Update Columbus Ruby Brigade, Rails Taiwan, and RubyJax (#756)
Browse files Browse the repository at this point in the history
* Add Columbus Ruby Brigade, Rails Taiwan, and RubyJax (#756)
---------

Co-authored-by: Marco Roth <[email protected]>
  • Loading branch information
github-actions[bot] and marcoroth authored Sep 6, 2024
1 parent cd3ba76 commit f113304
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
10 changes: 5 additions & 5 deletions _data/meetup_groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@
name: ChicagoRuby
service: meetupdotcom

- id: christchurch-ruby-group
name: Christchurch Ruby Group
service: meetupdotcom
# - id: christchurch-ruby-group
# name: Christchurch Ruby Group
# service: meetupdotcom

- id: clevelandruby
name: Cleveland Ruby Brigade
Expand Down Expand Up @@ -897,8 +897,8 @@
- id: sfruby
name: The San Francisco Ruby
service: meetupdotcom
exclude: Tech Leadership Tuesday Tea Time
remove:
exclude:
- Tech Leadership Tuesday Tea Time
- Code and Connect

- id: sfruby
Expand Down
23 changes: 15 additions & 8 deletions _data/meetups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1763,12 +1763,12 @@
end_time: 21:00:00 BST
url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/303122363

- name: 'Christchurch Ruby Group - Monthly Meetup: TBD September 2024'
- name: 'Christchurch Ruby Group - Monthly Meetup: How to Train your Manager September 2024'
location: Christchurch, New Zealand
date: 2024-09-19
start_time: 19:30:00 NZST
end_time: 22:30:00 NZST
url: https://www.meetup.com/christchurch-ruby-group/events/303133371
url: https://christchurch.ruby.nz/events/2024/2024-09-19-meetup

- name: 'Polish Ruby User Group - Warsaw meetup #September'
location: Warszawa, Poland
Expand All @@ -1777,6 +1777,13 @@
end_time: 21:00:00 CEST
url: https://www.meetup.com/polishrubyusergroup/events/303197441

- name: 'RubyJax - From Theory to Practice: Building Comprehensive PL/SQL Test Suites'
location: Online
date: 2024-09-19
start_time: 18:30:00 EDT
end_time: 20:30:00 EDT
url: https://www.meetup.com/rubyjax/events/303264670

- name: Ruby and Rails Adelaide - Ruby Burgers September 2024
location: Adelaide, Australia
date: 2024-09-20
Expand Down Expand Up @@ -1839,7 +1846,7 @@
date: 2024-09-25
start_time: 19:00:00 CST
end_time: 19:00:00 CST
url: https://www.meetup.com/rails-taiwan/events/qxfvjkygcmbhc
url: https://www.meetup.com/rails-taiwan/events/303253481

- name: Austin.rb - Ruby Social - Morning
location: Austin, TX
Expand Down Expand Up @@ -2106,7 +2113,7 @@
date: 2024-10-17
start_time: 19:30:00 NZST
end_time: 22:30:00 NZST
url: https://www.meetup.com/christchurch-ruby-group/events/jtzjwsygcnbwb
url: https://christchurch.ruby.nz

- name: Ruby and Rails Adelaide - Ruby Burgers October 2024
location: Adelaide, Australia
Expand Down Expand Up @@ -2134,7 +2141,7 @@
date: 2024-10-21
start_time: 18:00:00 EDT
end_time: 20:00:00 EDT
url: https://www.meetup.com/columbusrb/events/xwwkltygcnbcc
url: https://www.meetup.com/columbusrb/events/303256232

- name: Miami Ruby Brigade - October 2024
location: Coral Gables, FL
Expand Down Expand Up @@ -2401,7 +2408,7 @@
date: 2024-11-18
start_time: 18:00:00 EDT
end_time: 20:00:00 EDT
url: https://www.meetup.com/columbusrb/events/xwwkltygcpbxb
url: https://www.meetup.com/columbusrb/events/303256250

- name: Miami Ruby Brigade - November 2024
location: Coral Gables, FL
Expand Down Expand Up @@ -2443,7 +2450,7 @@
date: 2024-11-21
start_time: 19:30:00 NZST
end_time: 22:30:00 NZST
url: https://www.meetup.com/christchurch-ruby-group/events/jtzjwsygcpbcc
url: https://christchurch.ruby.nz

- name: Orange County Ruby - Ruby Science November 2024
location: Online
Expand Down Expand Up @@ -2704,7 +2711,7 @@
date: 2024-12-19
start_time: 19:30:00 NZST
end_time: 22:30:00 NZST
url: https://www.meetup.com/christchurch-ruby-group/events/jtzjwsygcqbzb
url: https://christchurch.ruby.nz

- name: Orange County Ruby - Ruby Science December 2024
location: Online
Expand Down
2 changes: 1 addition & 1 deletion src/static/meetup_group.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def upcoming_events
@upcoming_events ||= fetch_events.tap do |events|
events.select! { |event| event.event_date.between?(Date.today - 1, Date.today + 120) }
events.select! { |event| event.event_name.include?(filter) } if filter.present?
events.reject! { |event| event.event_name.include?(exclude) } if exclude.present?
events.reject! { |event| Array(exclude).any? { |e| event.event_name.include?(e) } } if exclude.present?
events.sort_by { |event| [event.event_date, event.event_name] }
end
end
Expand Down

0 comments on commit f113304

Please sign in to comment.