main 1378e2f3fece cached
45 files
489.7 KB
177.2k tokens
94 symbols
1 requests
Download .txt
Showing preview only (510K chars total). Download the full file or copy to clipboard to get everything.
Repository: ruby-conferences/ruby-conferences.github.io
Branch: main
Commit: 1378e2f3fece
Files: 45
Total size: 489.7 KB

Directory structure:
gitextract_frcsybe9/

├── .github/
│   └── workflows/
│       ├── deploy.yml
│       ├── meetups.yml
│       └── verify.yml
├── .gitignore
├── .ruby-version
├── 404.html
├── CNAME
├── Gemfile
├── LICENSE.md
├── README.md
├── Rakefile
├── _config.yml
├── _data/
│   ├── conferences.yml
│   ├── meetup_groups.yml
│   └── meetups.yml
├── _includes/
│   ├── event.html
│   ├── filters.html
│   └── meetup.html
├── _layouts/
│   ├── default.html
│   ├── page.html
│   └── post.html
├── _plugins/
│   └── continent_tag.rb
├── calendar.ics
├── cfp/
│   └── index.html
├── cfp.ics
├── css/
│   └── style.css
├── feed.xml
├── index.html
├── js/
│   └── callout.js
├── meetups/
│   └── index.html
├── past/
│   └── index.html
└── src/
    ├── data_file_validator.rb
    ├── events/
    │   ├── abstract_event.rb
    │   ├── ical_event.rb
    │   ├── luma_event.rb
    │   └── meetup_event.rb
    ├── meetup_client.rb
    ├── meetup_graphql_schema.json
    ├── meetups_file.rb
    ├── meetups_file_entry.rb
    ├── queries/
    │   └── events_query.rb
    ├── static/
    │   ├── conference.rb
    │   ├── meetup.rb
    │   └── meetup_group.rb
    └── static.rb

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/deploy.yml
================================================
name: Deploy to GitHub Pages

on:
  push:
    branches: ["main"]
  schedule:
    - cron: "0 7 * * *" # Runs every day at 07:00 UTC time
    
  workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
  contents: read
  pages: write
  id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
  group: "pages"
  cancel-in-progress: false

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
    
      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true

      - name: Setup Pages
        id: pages
        uses: actions/configure-pages@v5

      - name: Build with Jekyll
        # Outputs to the './_site' directory by default
        run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
        env:
          JEKYLL_ENV: production
      
      - name: Upload artifact
        # Automatically uploads an artifact from the './_site' directory by default
        uses: actions/upload-pages-artifact@v3

  # Deployment job
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}

    runs-on: ubuntu-latest
    needs: build
    
    steps:
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v4


================================================
FILE: .github/workflows/meetups.yml
================================================
name: Fetch Meetups

on:
  workflow_dispatch:
  schedule:
    - cron: "0 0 * * *" # Runs every day at 00:00 UTC time

permissions:
  pull-requests: write
  contents: write

jobs:
  fetch:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Set up Ruby

        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true

      - name: Check for new Meetups
        run: bundle exec rake fetch_meetups

      - name: Verify Meetups Data
        run: bundle exec rake verify_meetups

      - name: Set up the formatted date, branch name and PR title
        run: |
          echo "FORMATTED_DATE=$(date +'%B %d, %Y')" >> $GITHUB_ENV
          echo "BRANCH_TO_MERGE=meetups-update-$(date +'%Y-%m-%d')" >> $GITHUB_ENV
          echo "PULL_REQUEST_TITLE=$(cat ./pull_request_title.txt)" >> $GITHUB_ENV

      - name: Check if there are any new meetups
        run: |
          if [[ -n $(git diff --name-only _data/meetups.yml) ]]; then
            echo "MEETUPS_CHANGED=true" >> $GITHUB_ENV
          else
            echo "MEETUPS_CHANGED=false" >> $GITHUB_ENV
          fi

      - name: Commit New Meetups
        uses: stefanzweifel/git-auto-commit-action@v5
        if: ${{ env.MEETUPS_CHANGED == 'true' }}
        with:
          # Optional. Commit message for the created commit.
          # Defaults to "Apply automatic changes"
          commit_message: ${{ env.PULL_REQUEST_TITLE }}

          # Optional. Local and remote branch name where commit is going to be pushed
          #  to. Defaults to the current branch.
          #  You might need to set `create_branch: true` if the branch does not exist.
          branch: ${{ env.BRANCH_TO_MERGE }}

          # Optional. Options used by `git-commit`.
          # See https://git-scm.com/docs/git-commit#_options
          # commit_options: '--no-verify --signoff'

          # Optional glob pattern of files which should be added to the commit
          # Defaults to all (.)
          # See the `pathspec`-documentation for git
          # - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203
          # - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec
          file_pattern: '_data/*.yml'

          # Optional. Local file path to the repository.
          # Defaults to the root of the repository.
          # repository: .

          # Optional commit user and author settings
          # commit_user_name: My GitHub Actions Bot # defaults to "github-actions[bot]"
          # commit_user_email: my-github-actions-bot@example.org # defaults to "41898282+github-actions[bot]@users.noreply.github.com"
          # commit_author: Author <actions@github.com> # defaults to "username <username@users.noreply.github.com>", where "username" belongs to the author of the commit that triggered the run

          # Optional. Tag name being created in the local repository and
          # pushed to remote repository and defined branch.
          # tagging_message: 'v1.0.0'

          # Optional. Option used by `git-status` to determine if the repository is
          # dirty. See https://git-scm.com/docs/git-status#_options
          status_options: '--untracked-files=no'

          # Optional. Options used by `git-add`.
          # See https://git-scm.com/docs/git-add#_options
          # add_options: '-u'

          # Optional. Options used by `git-push`.
          # See https://git-scm.com/docs/git-push#_options
          # push_options: '--force'

          # Optional. Disable dirty check and always try to create a commit and push
          # skip_dirty_check: true

          # Optional. Skip internal call to `git fetch`
          # skip_fetch: true

          # Optional. Skip internal call to `git checkout`
          # skip_checkout: true

          # Optional. Prevents the shell from expanding filenames.
          # Details: https://www.gnu.org/software/bash/manual/html_node/Filename-Expansion.html
          # disable_globbing: true

          # Optional. Create given branch name in local and remote repository.
          create_branch: true

      - name: Create Pull Request
        if: ${{ env.MEETUPS_CHANGED == 'true' }}
        run: gh pr create -B ${{ github.head_ref || github.ref_name }} -H ${{ env.BRANCH_TO_MERGE }} --title "${{ env.PULL_REQUEST_TITLE }}" --body-file "./pull_request_body.md"
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


================================================
FILE: .github/workflows/verify.yml
================================================
name: Verify Data
permissions:
  contents: read

on: [push, pull_request]
jobs:
  verify:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Set up Ruby

        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true

      - name: Verify Conference Data
        run: bundle exec rake verify_conferences

      - name: Verify Meetups Data
        run: bundle exec rake verify_meetups

      - name: Verify Website build
        run: bundle exec jekyll build


================================================
FILE: .gitignore
================================================
_site
.jekyll-metadata
bin/
pull_request_title.txt
pull_request_body.md


================================================
FILE: .ruby-version
================================================
3.3.5


================================================
FILE: 404.html
================================================
---
layout: default
---
<article id="error">
  <h1>Welp, that sucks</h1>
  <p>There was a problem finding the page you requested - sorry about that. Please feel free to <a href="https://github.com/ruby-conferences/ruby-conferences.github.io/issues">open an issue</a> about this problem, but you'll probably want to head to the <a href="/">home page</a>.</p>
</article>


================================================
FILE: CNAME
================================================
rubyconferences.org

================================================
FILE: Gemfile
================================================
source 'https://rubygems.org'

ruby File.read(".ruby-version").strip

gem 'html-proofer'
gem 'jekyll'
gem 'rake'
gem 'graphql-client', '~> 0.23.0'
gem 'frozen_record', '~> 0.27.2'
gem 'countries', '~> 6.0'
gem 'icalendar', '~> 2.10'

group :jekyll_plugins do
  gem 'jekyll-feed'
end


================================================
FILE: LICENSE.md
================================================
The design of the site is copyrighted by Cameron Daigle.

All other original work uses the Creative Commons
[Attribution-NonCommercial-ShareAlike 4.0 International License][l].

[l]: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_US


================================================
FILE: README.md
================================================
# Ruby Conferences

[RubyConferences.org][r] is a simple list of Ruby conferences, published
collaboratively with the Ruby community. Updates are sometimes posted to
[@rubyconferences][t].

[r]: https://rubyconferences.org/
[t]: https://twitter.com/rubyconferences

## ICS Calendar Feeds

This page publishes `.ics` feed files for inclusion in personal calendars:

- [`calendar.ics`](https://rubyconferences.org/calendar.ics) for the events only
- [`cfp.ics`](https://rubyconferences.org/cfp.ics) for the CFP open/close dates

## RSS Feed

This page publishes an RSS feed so you can stay up to date with newly announced Ruby conferences.

- [`feed.xml`](https://rubyconferences.org/feed.xml) for RSS Readers


## Eligible Conferences

Focus is a goal of this project and as a result, only conferences that are
specifically for Ruby are listed. That means that if a conference covers Ruby,
but is not specifically for Rubyists, then it is left out.

A good rule of thumb for whether a conference should be included is if its name
includes either Ruby or Rails and how it describes itself. A conference that
describes itself as a "Conference on Web Development" might be an awesome event,
but it's probably not a Ruby conference.

## Contributing

The list of events is driven by the conferences file in the `_data` directory - if you have an update for those things, just change the YAML and send a PR.

**Conferences**

The file to be changed is `_data/conferences.yml`.
This file is order-dependent. Put your conference in the YAML file sorted by its `start_date`.

Here is a list of the keys that can be used:

* `name`: The official name of the event
* `location`: When the event is in the US, this would be "City, State", for any
  other country, use "City, Country".
* `start_date`: The date of the first day of the event - ISO8601 formatted (yyyy-mm-dd).
* `end_date`: The date of the last day of the event - ISO8601 formatted (yyyy-mm-dd). For one day events this should equal `start_date`.
* `url`: The url for the event.
* `twitter`: The twitter handle for the event, you can leave off the "@".
* `mastodon`: The mastodon url for the event, for example https://ruby.social/@conferencehandle

Extra keys for the upcoming events:

* `reg_phrase`: Typically you want to put "Registration open" here.
* `reg_date`: If there is a registration deadline, enter that here - ISO8601 formatted (yyyy-mm-dd).
* `cfp_open_date`: The date when the CFP was opened - ISO8601 formatted (yyyy-mm-dd).
* `cfp_close_date`: If there is a CFP deadline, enter that here - ISO8601 formatted (yyyy-mm-dd).
* `cfp_link`: A link to the CFP submission page.
* `status`:  Typically you want to put "Cancelled", "Postponed" or "To be announced" here.
* `date_precision`: Controls the precision of the `start_date` and `end_date` when the conference dates aren't announced just yet, but it's confirmed that the conference is happening. Possible values: `full` (implicit default), `month` or `year`. The `start_date` and `end_date` fields still need to be fully formatted ISO8601 dates, you can put the last day of the month/year in it so it also gets ordered properly.
* `announced_on`: The date on which the conference was announced - ISO8601 formatted (yyyy-mm-dd). This date is used as the publishing date for the [RSS feed](https://rubyconferences.org/feed.xml) so people can stay up to date with newly announced conferences.

Extra keys for the past events:

* `video_link`: A url to the videos for the event.

**Meetups**

The file to be changed is `_data/meetups.yml`.
This file is order-dependent. Put your meetup in the YAML file sorted by its date.
Otherwise, put the meetup at the end of the YAML file and run `rake sort_meetups`.
Please make sure to preserve any comments in the YAML file.

Here is a list of the keys that can be used:

* `name`: The official name of the event
* `location`: When the event is in the US, this would be "City, State", for any
  other country, use "City, Country".
* `date`: The date of the event - ISO8601 formatted (yyyy-mm-dd).
* `start_time`: The start time of the event - formatted as (hh:mm:ss ZZZ)
  * hh - between 0 and 23
  * mm - between 0 and 59
  * ss - between 0 and 59
  * ZZZ - timezone (e.g. CDT or EST)
* `end_time`: The end time of the event - ISO8601 formatted as (hh:mm:ss ZZZ) using same values as `start_time`
* `url`: The url for the event.
* `status`:  Typically you want to put "Cancelled" or "Postponed" here.

## Getting started

We build the site with [Jekyll](https://jekyllrb.com/).

Install Ruby, then:
```
cd ruby-conferences.github.io
bundle install
bundle exec jekyll serve
```
and point your browser at http://localhost:4000/

## License

The design of the site is copyrighted by Cameron Daigle.

All other original work uses the Creative Commons
[Attribution-NonCommercial-ShareAlike 4.0 International License][l].

[l]: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_US


================================================
FILE: Rakefile
================================================
#!/usr/bin/env rake

require "yaml"
require "date"
require "ostruct"

require "./src/data_file_validator"
require "./src/static"
require "./src/meetup_client"
require "./src/meetups_file"

desc "Build Jekyll site"
task :build do
  exit 1 unless system "bundle exec jekyll build"
end

desc "Verify generated HTML"
task :verify_html do
  exit 2 unless system "bundle exec htmlproofer ./_site"
end

desc "Verify event conferences"
task :verify_conferences do
  allowed_keys = [
    "name",
    "location",
    "start_date",
    "end_date",
    "url",
    "twitter",
    "mastodon",
    "reg_phrase",
    "reg_date",
    "cfp_open_date",
    "cfp_close_date",
    "cfp_link",
    "status",
    "date_precision",
    "video_link",
    "announced_on"
  ]
  data = YAML.load_file("_data/conferences.yml", permitted_classes: [Date])
  validator = DataFileValidator.validate(data, allowed_keys)

  exit 3 if validator.missing_keys?
  exit 4 if validator.bonus_keys?

  events = validator.events
  dates = events.map { |event| event["start_date"] }
  exit 5 unless dates.sort == dates
  exit 6 if validator.missing_announced_on_date?
end

desc "verify meetups"
task :verify_meetups do
  allowed_keys = [
    "name",
    "location",
    "date",
    "start_time",
    "end_time",
    "url",
    "twitter",
    "mastodon",
    "video_link",
    "status",
    "service"
  ]
  data = YAML.load_file("_data/meetups.yml", permitted_classes: [Date])
  validator = DataFileValidator.validate(data, allowed_keys, :meetup)

  exit 3 if validator.missing_keys?
  exit 4 if validator.bonus_keys?

  events = validator.events
  dates = events.map { |event| event["start_date"] }
  exit 5 unless dates.sort == dates
  exit 6 if validator.duplicate_events?
end

desc "fetch meetups"
task :fetch_meetups do
  MeetupsFile.read.tap do |file|
    file.fetch!
    file.write!
  end
end

desc "fetch past meetups"
task :fetch_past_meetups do
  MeetupsFile.read.tap do |file|
    file.fetch!(past: true)
    file.write!
  end
end

# to fetch a single group run:
#   bundle exec rake fetch_meetup[sfruby]
desc "fetch a single group"
task :fetch_meetup, [:group_id] do |_, args|
  MeetupsFile.read.tap do |file|
    file.fetch!(args[:group_id])
    file.write!
  end
end

# to fetch past events of a single group run:
#   bundle exec rake fetch_past_meetups[sfruby]
desc "fetch past meetups of a single group"
task :fetch_past_meetup, [:group_id] do |_, args|
  MeetupsFile.read.tap do |file|
    file.fetch!(args[:group_id], past: true)
    file.write!
  end
end

desc "fetch write all meetup groups"
task :fetch_and_write_all_meetups do
  MeetupGroup.all.each do |group|
    MeetupsFile.read.tap do |file|
      file.fetch!(group.id)
      file.write!
    end
  end
end

desc "sort meetups"
task :sort_meetups do
  MeetupsFile.read.tap do |file|
    file.write!
  end
end

task default: [:build, :verify_data, :verify_html]


================================================
FILE: _config.yml
================================================
name: Ruby Conferences
url: https://rubyconferences.org
safe: false
lsi: false
source: .
exclude:
  - CNAME
  - Dangerfile
  - Gemfile
  - Gemfile.lock
  - LICENSE.md
  - README.md
  - Rakefile
  - notes.txt
  - vendor
  - src
  - '*.rb'

plugins:
  - jekyll-feed


================================================
FILE: _data/conferences.yml
================================================
---

- name: Magic Ruby 2011
  location: Orlando, FL
  start_date: 2011-02-04
  end_date: 2011-02-05
  url: https://web.archive.org/web/20110208061529/http://magic-ruby.com/
  twitter: magicrubyconf

- name: Magic Ruby 2012
  location: Orlando, FL
  start_date: 2012-10-05
  end_date: 2012-10-06
  url: https://magic-ruby.com
  twitter: magicrubyconf

- name: 'RubyMotion #inspect 2013'
  location: Brussels, Belgium
  start_date: 2013-03-28
  end_date: 2013-03-29
  url: http://www.rubymotion.com/events/conference
  twitter: rubymotion

- name: Garden City RubyConf 2014
  location: Bangalore, India
  start_date: 2014-01-03
  end_date: 2014-01-04
  twitter: gardencityrb
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyblPURtJo18HwEYDayBiJJ-

- name: Rubyfuza 2014
  location: Cape Town, South Africa
  start_date: 2014-02-06
  end_date: 2014-02-08
  url: http://www.rubyfuza.org/2014/
  twitter: rubyfuza
  video_link: http://www.confreaks.com/events/rubyfuza2014

- name: Los Angeles Ruby Conference 2014
  location: Los Angeles, CA
  start_date: 2014-02-08
  end_date: 2014-02-08
  twitter: larubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYidNh3m57hyDjjKGC9-rbj

- name: RubyConf AU 2014
  location: Sydney, Australia
  start_date: 2014-02-20
  end_date: 2014-02-21
  url: https://rubyconf.org.au/2014
  twitter: rubyconf_au
  video_link: https://vimeo.com/channels/699773

- name: Big Ruby 2014
  location: Dallas, TX
  start_date: 2014-02-20
  end_date: 2014-02-21
  url: http://web.archive.org/web/20140228185424/http://www.bigrubyconf.com:80/
  twitter: bigrubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcybDQsdHP1e7msGEalUPaV06

- name: RubySauna 2014
  location: Oulu, Finland
  start_date: 2014-02-27
  end_date: 2014-02-27
  url: http://web.archive.org/web/20140213081334/http://www.rubysauna.org:80/
  twitter: rubysauna

- name: Ruby on Ales 2014
  location: Bend, OR
  start_date: 2014-03-06
  end_date: 2014-03-07
  twitter: rbonales
  video_link: http://www.confreaks.com/events/roa2014

- name: wroclove.rb 2014
  location: Wrocław, Poland
  start_date: 2014-03-14
  end_date: 2014-03-16
  url: https://2014.wrocloverb.com
  twitter: wrocloverb
  video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRCYNOfsPoxVWChbT5x5D5WP

- name: MountainWest RubyConf 2014
  location: Salt Lake City, UT
  start_date: 2014-03-20
  end_date: 2014-03-21
  url: http://mtnwestrubyconf.org/2014/
  twitter: mwrc
  video_link: http://confreaks.tv/events/mwrc2014

- name: RubyConf India 2014
  location: Goa, India
  start_date: 2014-03-22
  end_date: 2014-03-23
  url: https://2014.rubyconfindia.org/
  twitter: rubyconfindia
  video_link: https://www.youtube.com/playlist?list=PLNyYRB_d4fk2Hz8_HuHIAPv5dJGrnxh14

- name: RubyConf Philippines 2014
  location: Manila, Philippines
  start_date: 2014-03-28
  end_date: 2014-03-29
  url: http://rubyconf.ph/
  twitter: rubyconfph

- name: Ancient City Ruby 2014
  location: St. Augustine, FL
  start_date: 2014-04-03
  end_date: 2014-04-04
  url: http://www.ancientcityruby.com/2014/
  twitter: ancientcityruby
  video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJMDh6Jg0vPftT2S34zPEPhJ

- name: RailsConf 2014
  location: Chicago, IL
  start_date: 2014-04-22
  end_date: 2014-04-25
  url: https://www.railsconf.com/
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZ5jfnbS_osIoWzK_FrwKz5

- name: Abril Pro Ruby 2014
  location: Porto de Galinhas, Brazil
  start_date: 2014-04-24
  end_date: 2014-04-27
  url: http://tropicalrb.com/2014/en/
  twitter: abrilproruby
  video_link: https://www.youtube.com/playlist?list=PL7a-mWnTar6v5cDC4MLDZKwD0RuMSDHHP

- name: RubyConf Taiwan 2014
  location: Taipei, Taiwan
  start_date: 2014-04-25
  end_date: 2014-04-26
  url: https://rubyconf.tw/2014/
  twitter: rubytaiwan
  video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpCUi7IcCDEVSRc1OsaJSguB

- name: Scottish Ruby Conf 2014
  location: Perthshire, Scotland
  start_date: 2014-05-12
  end_date: 2014-05-13
  url: http://scottishrubyconference.com
  twitter: scotrubyconf
  video_link: https://confreaks.tv/events/scottishrubyconf2014

- name: RubyConf Uruguay 2014
  location: Montevideo, Uruguay
  start_date: 2014-05-23
  end_date: 2014-05-24
  url: http://web.archive.org/web/20150105045157/http://www.rubyconfuruguay.org:80/en
  twitter: rubyconfuruguay
  video_link: https://www.youtube.com/playlist?list=PLxx5qlTQCf0zx-DIFVHlftznHExI7ONEV

- name: 'RubyMotion #inspect 2014'
  location: San Francisco, CA
  start_date: 2014-05-28
  end_date: 2014-05-29
  url: http://www.rubymotion.com/conference/2014/
  twitter: rubymotion
  video_link: http://confreaks.tv/events/inspect2014

- name: RubyC 2014
  location: Kiev, Ukraine
  start_date: 2014-05-31
  end_date: 2014-06-01
  url: http://rubyc.eu/
  twitter: rubyc_eu
  video_link: https://rubyc.eu/archives/4

- name: RubyNation 2014
  location: Washington, DC
  start_date: 2014-06-06
  end_date: 2014-06-07
  url: http://www.rubynation.org/
  twitter: rubynation

- name: Ruby Lugdunum 2014
  location: Lyon, France
  start_date: 2014-06-19
  end_date: 2014-06-20
  url: http://2014.rulu.eu/
  twitter: rulu

- name: GORUCO 2014
  location: New York, NY
  start_date: 2014-06-21
  end_date: 2014-06-21
  url: http://goruco.com/
  twitter: goruco
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZj4qdxsQKW4-8KnlpoGfgf

- name: RedDotRubyConf 2014
  location: Singapore
  start_date: 2014-06-26
  end_date: 2014-06-27
  url: https://rdrc2014.herokuapp.com/
  twitter: reddotrubyconf
  video_link: http://www.confreaks.com/events/rdrc2014

- name: DeccanRubyConf 2014
  location: Pune, India
  start_date: 2014-07-19
  end_date: 2014-07-19
  twitter: deccanrubyconf

- name: Brighton Ruby 2014
  location: Brighton, UK
  start_date: 2014-07-21
  end_date: 2014-07-21
  url: https://brightonruby.com/2014
  video_link: https://brightonruby.com/2014
  twitter: brightonruby

- name: Burlington Ruby Conference 2014
  location: Burlington, VT
  start_date: 2014-08-01
  end_date: 2014-08-03
  url: http://burlingtonruby.github.io/burlingtonrubyconference2014/
  twitter: btvrubyconf
  video_link: http://vimeo.com/album/2996485

- name: eurucamp 2014
  location: Potsdam, Germany
  start_date: 2014-08-01
  end_date: 2014-08-03
  url: http://2014.eurucamp.org
  twitter: eurucamp
  video_link: http://media.eurucamp.org/

- name: JRubyConf EU 2014
  location: Potsdam, Germany
  start_date: 2014-08-01
  end_date: 2014-08-01
  url: http://2014.jrubyconf.eu/
  twitter: jrubyconfeu
  video_link: http://media.eurucamp.org/

- name: Cascadia Ruby 2014
  location: Portland, OR
  start_date: 2014-08-11
  end_date: 2014-08-12
  url: http://cascadiaruby.com/
  twitter: cascadiaruby
  video_link: http://confreaks.com/events/cascadiaruby2014

- name: Madison+ Ruby 2014
  location: Madison, WI
  start_date: 2014-08-22
  end_date: 2014-08-23
  twitter: madisonruby
  video_link: https://www.youtube.com/playlist?list=PLJ-cEwTSAyZ6gLSWt1Mnq7vxqB6qiEzMz

- name: RedFrogConf 2014
  location: Sankt Augustin, Germany
  start_date: 2014-08-23
  end_date: 2014-08-24
  url: http://ruby.froscon.org/
  twitter: redfrogconf

- name: RubyConf Brazil 2014
  location: São Paulo, Brazil
  start_date: 2014-08-28
  end_date: 2014-08-29
  twitter: rubyconfbr

- name: WindyCityRails 2014
  location: Chicago, IL
  start_date: 2014-09-04
  end_date: 2014-09-05
  url: http://www.windycityrails.org/
  twitter: windycityrails
  video_link: http://www.windycityrails.org/videos/2014/

- name: Frozen Rails 2014
  location: Helsinki, Finland
  start_date: 2014-09-11
  end_date: 2014-09-12
  url: http://2014.frozenrails.eu/
  twitter: frozenrails

- name: Barcelona Ruby Conf 2014
  location: Barcelona, Spain
  start_date: 2014-09-11
  end_date: 2014-09-13
  url: http://web.archive.org/web/20141219035936/http://www.baruco.org/
  twitter: baruco
  video_link: http://confreaks.tv/events/baruco2014

- name: RubyKaigi 2014
  location: Tokyo, Japan
  start_date: 2014-09-18
  end_date: 2014-09-20
  url: http://rubykaigi.org/2014
  twitter: rubykaigi
  video_link: https://www.youtube.com/channel/UCBSg5zH-VFJ42BGQFk4VH2A

- name: Golden Gate Ruby Conference 2014
  location: San Francisco, CA
  start_date: 2014-09-19
  end_date: 2014-09-20
  url: http://web.archive.org/web/20141217041726/http://gogaruco.com/
  twitter: gogaruco
  video_link: http://confreaks.com/events/gogaruco2014

- name: Rocky Mountain Ruby 2014
  location: Boulder, CO
  start_date: 2014-09-25
  end_date: 2014-09-26
  url: http://rockymtnruby.com/
  twitter: rockymtnruby
  video_link: http://www.confreaks.com/events/rmr2014

- name: Rails Pacific 2014
  location: Taipei, Taiwan
  start_date: 2014-09-26
  end_date: 2014-09-27
  url: http://www.railspacific.com
  twitter: railspacific
  video_link: http://confreaks.tv/events/railspacific2014

- name: RailsClub 2014
  location: Moscow, Russia
  start_date: 2014-09-27
  end_date: 2014-09-27
  url: https://rubyrussia.club
  twitter: railsclub_ru
  video_link: https://www.youtube.com/watch?v=i6mTsTpOi2Y&list=UU0W9Gjw4JzUcC2BfFf1MDHA

- name: ArrrrCamp 2014
  location: Ghent, Belgium
  start_date: 2014-10-02
  end_date: 2014-10-03
  url: http://arrrrcamp.be/
  twitter: arrrrcamp
  video_link: http://www.confreaks.com/events/arrrrcamp2014

- name: Nickel City Ruby Conference 2014
  location: Buffalo, NY
  start_date: 2014-10-03
  end_date: 2014-10-04
  url: http://nickelcityruby.com/
  twitter: nickelcityruby
  video_link: http://www.confreaks.com/events/nickelcityruby2014

- name: Ruby DCamp 2014
  location: Prince William Forest Park, VA
  start_date: 2014-10-10
  end_date: 2014-10-12
  url: http://rubydcamp.org/
  twitter: ruby_dcamp

- name: RubyConf Portugal 2014
  location: Braga, Portugal
  start_date: 2014-10-13
  end_date: 2014-10-14
  url: http://2014.rubyconf.pt/
  twitter: rubyconfpt
  video_link: https://www.youtube.com/playlist?list=PLgGhdJEbwzoLCuTL4BD--TOKdHomGsRDm

- name: Keep Ruby Weird 2014
  location: Austin, TX
  start_date: 2014-10-24
  end_date: 2014-10-24
  url: http://keeprubyweird.com/
  twitter: keeprubyweird
  video_link: http://www.confreaks.com/events/KeepRubyWeird14

- name: RubyConf Argentina 2014
  location: Buenos Aires, Argentina
  start_date: 2014-10-24
  end_date: 2014-10-25
  url: http://rubyconfargentina.org/
  twitter: rubyconfar
  video_link: https://www.youtube.com/channel/UCFQlyEnjkJ3GBCIHjG2CAJg/playlists

- name: Rails Israel 2014
  location: Tel Aviv, Israel
  start_date: 2014-11-04
  end_date: 2014-11-05
  url: http://railsisrael2014.events.co.il/
  twitter: fogelmania

- name: RubyWorld Conference 2014
  location: Matsue, Japan
  start_date: 2014-11-13
  end_date: 2014-11-14
  url: http://2014.rubyworld-conf.org/en/
  twitter: rubyworldconf

- name: RubyConf 2014
  location: San Diego, CA
  start_date: 2014-11-17
  end_date: 2014-11-19
  url: https://rubyconf.org/
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYajZ5aZlJf1g2u5Boq-jic

- name: Garden City RubyConf 2015
  location: Bangalore, India
  start_date: 2015-01-10
  end_date: 2015-01-10
  url: http://web.archive.org/web/20161226185837/http://2015.gardencityruby.org:80/
  twitter: gardencityrb
  video_link: http://confreaks.tv/events/gardencityrb2015

- name: Ruby devroom at FOSDEM 2015
  location: Brussels, Belgium
  start_date: 2015-01-31
  end_date: 2015-02-01
  url: http://fosdem-ruby.github.io/
  twitter: ruby_fosdem

- name: RubyConf AU 2015
  location: Melbourne, Australia
  start_date: 2015-02-04
  end_date: 2015-02-07
  url: https://rubyconf.org.au/2015
  twitter: rubyconf_au
  video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc2uUcqG2wjZ1ppt-TkFG-gm

- name: Rubyfuza 2015
  location: Cape Town, South Africa
  start_date: 2015-02-05
  end_date: 2015-02-06
  url: http://www.rubyfuza.org/2015/
  twitter: rubyfuza
  video_link: https://www.youtube.com/playlist?list=PLI113oIao_x63Ne1S8ObKYQwbPRcpb8kN

- name: Ruby on Ales 2015
  location: Bend, OR
  start_date: 2015-03-05
  end_date: 2015-03-06
  twitter: rbonales
  video_link: http://confreaks.tv/events/roa2015

- name: Tropical.rb 2015
  location: Porto de Galinhas, Brazil
  start_date: 2015-03-05
  end_date: 2015-03-08
  url: http://tropicalrb.com/
  twitter: tropicalrb
  video_link: http://tropicalrb.com/en/videos/

- name: MountainWest RubyConf 2015
  location: Salt Lake City, UT
  start_date: 2015-03-09
  end_date: 2015-03-10
  url: http://mtnwestrubyconf.org/2015/
  twitter: mwrc
  video_link: http://confreaks.tv/events/mwrc2015

- name: Bath Ruby 2015
  location: Bath, UK
  start_date: 2015-03-13
  end_date: 2015-03-13
  url: http://2015.bathruby.org
  twitter: BathRuby
  video_link: http://confreaks.tv/events/bathruby2015

- name: wroclove.rb 2015
  location: Wrocław, Poland
  start_date: 2015-03-13
  end_date: 2015-03-15
  url: https://2015.wrocloverb.com
  twitter: wrocloverb

- name: RubyConfLT 2015
  location: Vilnius, Lithuania
  start_date: 2015-03-21
  end_date: 2015-03-21
  url: https://2015.rubyconf.lt/
  twitter: rubyconflt
  video_link: https://www.youtube.com/user/rubyconflt

- name: Ancient City Ruby 2015
  location: St. Augustine, FL
  start_date: 2015-03-26
  end_date: 2015-03-27
  url: http://www.ancientcityruby.com/2015/
  twitter: ancientcityruby
  video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJOWPOGH3R3ww7AulwmOadr2

- name: RubyConf Philippines 2015
  location: Boracay Island, Philippines
  start_date: 2015-03-27
  end_date: 2015-03-28
  url: http://rubyconf.ph/2015/
  twitter: rubyconfph
  video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSGlKtZOeqZKUMOB2w8qlUC_

- name: RubyConf India 2015
  location: Goa, India
  start_date: 2015-04-03
  end_date: 2015-04-05
  url: https://2015.rubyconfindia.org/
  twitter: rubyconfindia
  video_link: https://www.youtube.com/channel/UCRNZy_ouJ1ai_uYwDBR2J5Q/videos

- name: RailsConf 2015
  location: Atlanta, GA
  start_date: 2015-04-21
  end_date: 2015-04-23
  url: http://www.railsconf.com/2015
  twitter: railsconf
  video_link: http://confreaks.tv/events/railsconf2015

- name: ROSSConf 2015
  location: Vienna, Austria
  start_date: 2015-04-25
  end_date: 2015-04-25
  url: http://www.rossconf.io/
  twitter: rossconf

- name: RubyConf Kenya 2015
  location: Nairobi, Kenya
  start_date: 2015-05-08
  end_date: 2015-05-09
  url: http://rubyconf.nairuby.org/2015
  twitter: nairubyke

- name: RubyC 2015
  location: Kiev, Ukraine
  start_date: 2015-05-30
  end_date: 2015-05-31
  url: http://rubyc.eu/
  twitter: rubyc_eu
  video_link: https://rubyc.eu/archives/5

- name: RedDotRubyConf 2015
  location: Singapore
  start_date: 2015-06-04
  end_date: 2015-06-05
  url: https://rdrc2015.herokuapp.com/
  twitter: reddotrubyconf
  video_link: http://confreaks.tv/events/rdrc2015

- name: RubyNation 2015
  location: Washington, DC
  start_date: 2015-06-12
  end_date: 2015-06-13
  url: http://www.rubynation.org/
  twitter: rubynation

- name: GORUCO 2015
  location: New York, NY
  start_date: 2015-07-20
  end_date: 2015-07-20
  url: http://2015.goruco.com/
  twitter: goruco
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyb6MU6H8PratMhV4bWUL8bv

- name: Brighton Ruby 2015
  location: Brighton, UK
  start_date: 2015-07-20
  end_date: 2015-07-20
  url: https://brightonruby.com/2015/
  twitter: brightonruby
  video_link: https://brightonruby.com/2015/

- name: JRubyConf EU 2015
  location: Potsdam, Germany
  start_date: 2015-07-31
  end_date: 2015-07-31
  url: http://jrubyconf.eu
  twitter: jrubyconfeu
  video_link: http://media.eurucamp.org/

- name: Burlington Ruby Conference 2015
  location: Burlington, VT
  start_date: 2015-07-31
  end_date: 2015-08-02
  url: http://burlingtonruby.github.io/burlingtonrubyconference2015/
  twitter: btvrubyconf

- name: eurucamp 2015
  location: Potsdam, Germany
  start_date: 2015-07-31
  end_date: 2015-08-02
  url: http://eurucamp.org
  twitter: eurucamp
  video_link: http://media.eurucamp.org/

- name: DeccanRubyConf 2015
  location: Pune, India
  start_date: 2015-08-08
  end_date: 2015-08-08
  twitter: deccanrubyconf

- name: Madison+ Ruby 2015
  location: Madison, WI
  start_date: 2015-08-20
  end_date: 2015-08-22
  twitter: madisonruby

- name: Ruby Midwest 2015
  location: Kansas City, MO
  start_date: 2015-08-28
  end_date: 2015-08-29
  twitter: rubymidwest

- name: Barcelona Ruby Conf 2015
  location: Barcelona, Spain
  start_date: 2015-09-01
  end_date: 2015-09-02
  url: http://www.baruco.org/
  twitter: baruco

- name: RubyConf Taiwan 2015
  location: Taipei, Taiwan
  start_date: 2015-09-11
  end_date: 2015-09-12
  url: https://2015.rubyconf.tw/
  twitter: rubytaiwan
  video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpDVKgAH_p_X7gtLSGsvmMJj

- name: RubyConf Portugal 2015
  location: Braga, Portugal
  start_date: 2015-09-14
  end_date: 2015-09-15
  url: http://2015.rubyconf.pt/
  twitter: rubyconfpt
  video_link: https://www.youtube.com/playlist?list=PLgGhdJEbwzoJSREjEZhKnDxyezC47Cgh5

- name: WindyCityRails 2015
  location: Chicago, IL
  start_date: 2015-09-17
  end_date: 2015-09-18
  url: http://www.windycityrails.org/
  twitter: windycityrails
  video_link: https://windycityrails.com/videos/2015/

- name: RubyConf Brazil 2015
  location: São Paulo, Brazil
  start_date: 2015-09-18
  end_date: 2015-09-19
  twitter: rubyconfbr

- name: Rocky Mountain Ruby 2015
  location: Boulder, CO
  start_date: 2015-09-23
  end_date: 2015-09-25
  url: http://www.rockymtnruby.com/
  twitter: rockymtnruby
  video_link: https://www.confreaks.tv/events/rmr2015

- name: RailsClub 2015
  location: Moscow, Russia
  start_date: 2015-09-26
  end_date: 2015-09-26
  url: https://rubyrussia.club/
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeOiwKkEcdRU7NvQr2IKaMBw

- name: ROSSConf Berlin 2015
  location: Berlin, Germany
  start_date: 2015-09-26
  end_date: 2015-09-26
  url: http://www.rossconf.io/
  twitter: rossconf

- name: ArrrrCamp 2015
  location: Ghent, Belgium
  start_date: 2015-10-01
  end_date: 2015-10-02
  url: http://2015.arrrrcamp.be
  twitter: arrrrcamp
  video_link: http://confreaks.tv/events/arrrrcamp2015

- name: Los Angeles Ruby Conference 2015
  location: Los Angeles, CA
  start_date: 2015-10-10
  end_date: 2015-10-10
  twitter: larubyconf
  video_link: https://www.confreaks.tv/events/larubyconf2015

- name: RubyConf Colombia 2015
  location: Medellin, Colombia
  start_date: 2015-10-15
  end_date: 2015-10-16
  url: http://2015.rubyconf.co/
  twitter: rubyconfco
  video_link: https://www.youtube.com/playlist?list=PLq_08z5fuQgFP64HqrRWd3RWUKmPFMdo6

- name: EuRuKo 2015
  location: Salzburg, Austria
  start_date: 2015-10-17
  end_date: 2015-10-18
  url: https://2015.euruko.org
  twitter: euruko

- name: Keep Ruby Weird 2015
  location: Austin, TX
  start_date: 2015-10-23
  end_date: 2015-10-23
  url: http://keeprubyweird.com
  twitter: keeprubyweird
  video_link: http://confreaks.tv/events/keeprubyweird2015

- name: RubyWorld Conference 2015
  location: Matsue, Japan
  start_date: 2015-11-11
  end_date: 2015-11-12
  url: http://2015.rubyworld-conf.org/en/
  twitter: rubyworldconf
  video_link: http://2015.rubyworld-conf.org/en/program/

- name: rubyday 2015
  location: Turin, Italy
  start_date: 2015-11-13
  end_date: 2015-11-13
  url: http://2015.rubyday.it/
  twitter: rubydayit
  video_link: https://www.youtube.com/playlist?list=PL5ImBN21eKvaTC30b0rwaIWe3DRLr062d

- name: RubyConf 2015
  location: San Antonio, TX
  start_date: 2015-11-15
  end_date: 2015-11-17
  url: http://rubyconf.org/
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYqT3LHMg4iH270kfyENCpp

- name: Rails Israel 2015
  location: Tel Aviv, Israel
  start_date: 2015-11-24
  end_date: 2015-11-24
  url: http://railsisrael2015.events.co.il
  twitter: railsisrael

- name: RubyKaigi 2015
  location: Tokyo, Japan
  start_date: 2015-12-11
  end_date: 2015-12-13
  url: http://rubykaigi.org/2015
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PL0irJ82JAlEic6IlpRdsPl5L5f5aLMuXf

- name: Ruby devroom at FOSDEM 2016
  location: Brussels, Belgium
  start_date: 2016-01-31
  end_date: 2016-01-31
  url: http://fosdem.rubybelgium.be/
  twitter: ruby_fosdem

- name: Rubyfuza 2016
  location: Cape Town, South Africa
  start_date: 2016-02-04
  end_date: 2016-02-05
  url: http://www.rubyfuza.org/2016/
  twitter: rubyfuza

- name: RubyConf AU 2016
  location: Gold Coast, Australia
  start_date: 2016-02-10
  end_date: 2016-02-13
  url: https://rubyconf.org.au/2016
  twitter: rubyconf_au
  video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc3ILv2Lxlt422NjIFWnXl0U

- name: Bath Ruby 2016
  location: Bath, UK
  start_date: 2016-03-11
  end_date: 2016-03-11
  url: http://2016.bathruby.org
  twitter: bathruby
  video_link: http://confreaks.tv/events/bathruby2016

- name: wroclove.rb 2016
  location: Wrocław, Poland
  start_date: 2016-03-11
  end_date: 2016-03-13
  url: https://2016.wrocloverb.com
  twitter: wrocloverb

- name: RubyConf India 2016
  location: Kochi, India
  start_date: 2016-03-19
  end_date: 2016-03-20
  url: https://2016.rubyconfindia.org/
  twitter: rubyconfindia
  video_link: https://www.youtube.com/playlist?list=PLNyYRB_d4fk2LfGLjyv8Oa-ruc4EgkfAQ

- name: MountainWest RubyConf 2016
  location: Salt Lake City, UT
  start_date: 2016-03-21
  end_date: 2016-03-22
  url: http://mtnwestrubyconf.org/2016/
  twitter: mwrc
  video_link: http://confreaks.tv/events/mwrc2016

- name: Ruby on Ales 2016
  location: Bend, OR
  start_date: 2016-03-31
  end_date: 2016-04-01
  url: http://web.archive.org/web/20171102215052/http://ruby.onales.com/
  twitter: rbonales
  video_link: http://confreaks.tv/events/roa2016

- name: Ancient City Ruby 2016
  location: St. Augustine, FL
  start_date: 2016-04-06
  end_date: 2016-04-08
  url: http://www.ancientcityruby.com/
  twitter: ancientcityruby
  video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJPq3h7UGYbqNwrerEM05t_Q

- name: RubyConf Philippines 2016
  location: Manila, Philippines
  start_date: 2016-04-07
  end_date: 2016-04-09
  url: http://rubyconf.ph/2016/
  twitter: rubyconfph
  video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSH173SE64f28eQeTmXnufQj

- name: RubyConfLT 2016
  location: Vilnius, Lithuania
  start_date: 2016-04-23
  end_date: 2016-04-23
  url: https://2016.rubyconf.lt/
  twitter: rubyconflt
  video_link: https://www.youtube.com/user/rubyconflt

- name: RubyConfBY 2016
  location: Minsk, Belarus
  start_date: 2016-04-24
  end_date: 2016-04-24
  url: https://2016.rubyconference.by/en/
  twitter: rubyconfby
  video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCC82YnUz8sAsjmNyPWxIr9l

- name: RailsConf 2016
  location: Kansas City, MO
  start_date: 2016-05-04
  end_date: 2016-05-06
  url: http://www.railsconf.com/2016
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZGYLfj6oRQWPxB6ijg1YsC

- name: Rails Pacific 2016
  location: Taipei, Taiwan
  start_date: 2016-05-20
  end_date: 2016-05-21
  url: http://www.railspacific.com/
  twitter: railspacific
  video_link: http://confreaks.tv/events/railspacific2016

- name: RubyNation 2016
  location: Washington, DC
  start_date: 2016-06-03
  end_date: 2016-06-04
  url: http://www.rubynation.org/
  twitter: rubynation

- name: RubyC 2016
  location: Kiev, Ukraine
  start_date: 2016-06-04
  end_date: 2016-06-05
  url: http://rubyc.eu/
  twitter: rubyc_eu
  video_link: https://rubyc.eu/posts/55

- name: Ruby for Good 2016
  location: Washington, DC
  start_date: 2016-06-16
  end_date: 2016-06-19
  url: http://www.rubyforgood.org/
  twitter: rubyforgood

- name: NordicRuby 2016
  location: Stockholm, Sweden
  start_date: 2016-06-17
  end_date: 2016-06-19
  url: http://www.nordicruby.org/
  twitter: nordicruby

- name: RedDotRubyConf 2016
  location: Singapore
  start_date: 2016-06-23
  end_date: 2016-06-24
  url: https://rdrc2016.herokuapp.com/
  twitter: reddotrubyconf
  video_link: http://confreaks.tv/events/reddotruby2016

- name: GrillRB 2016
  location: Wrocław, Poland
  start_date: 2016-06-25
  end_date: 2016-06-26
  twitter: grill_rb

- name: GORUCO 2016
  location: New York, NY
  start_date: 2016-06-25
  end_date: 2016-06-25
  url: http://2016.goruco.com/
  twitter: goruco
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcybaE0Xm_yOK8-a-WAcltv1q

- name: OpenCommerce Conf 2016
  location: Rise, NY
  start_date: 2016-06-28
  end_date: 2016-06-29
  url: http://opencommerceconf.org/
  twitter: opencommerce_

- name: Brighton Ruby 2016
  location: Brighton, UK
  start_date: 2016-07-08
  end_date: 2016-07-08
  url: https://brightonruby.com/2016/
  twitter: brightonruby
  video_link: https://brightonruby.com/2016/

- name: DeccanRubyConf 2016
  location: Pune, India
  start_date: 2016-08-06
  end_date: 2016-08-06
  twitter: deccanrubyconf
  video_link: https://www.youtube.com/playlist?list=PLo3sQWbYZbskTlzH7Ert-FucR7QmIuwE5

- name: RubyConf KL 2016
  location: Kuala Lumpur, Malaysia
  start_date: 2016-08-13
  end_date: 2016-08-13
  url: http://rubyconf.my/2016
  twitter: rubyconfmy

- name: Tech Day by GURU-PR 2016
  location: Curitiba, Brazil
  start_date: 2016-08-20
  end_date: 2016-08-20
  url: http://www.gurupr.org/eventos/2-tech-day-do-guru-pr
  twitter: guru_pr

- name: RubyConf Colombia 2016
  location: Medellin, Colombia
  start_date: 2016-09-02
  end_date: 2016-09-03
  url: http://www.rubyconf.co/
  twitter: rubyconfco
  video_link: https://www.youtube.com/playlist?list=PLq_08z5fuQgGLwr7cJtU27IBgtz3Q4PII

- name: RubyKaigi 2016
  location: Kyoto, Japan
  start_date: 2016-09-08
  end_date: 2016-09-10
  url: http://rubykaigi.org/2016
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yYfT493G8C2fLvvhPDs-lIQ

- name: WindyCityRails 2016
  location: Chicago, IL
  start_date: 2016-09-15
  end_date: 2016-09-16
  url: http://www.windycityrails.org/
  twitter: windycityrails
  video_link: https://windycityrails.com/videos/2016/

- name: Rocky Mountain Ruby 2016
  location: Boulder, CO
  start_date: 2016-09-21
  end_date: 2016-09-23
  url: http://rockymtnruby.com/
  twitter: rockymtnruby
  video_link: http://confreaks.tv/events/rockymountainruby2016

- name: EuRuKo 2016
  location: Sofia, Bulgaria
  start_date: 2016-09-23
  end_date: 2016-09-24
  url: https://2016.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/channel/UChGs1td4ViQFqT0jlvkyUJg/videos

- name: RubyConf Brazil 2016
  location: São Paulo, Brazil
  start_date: 2016-09-23
  end_date: 2016-09-24
  twitter: rubyconfbr

- name: Conferencia Rails 2016
  location: Madrid, Spain
  start_date: 2016-10-14
  end_date: 2016-10-15
  url: http://conferenciaror.es/
  twitter: conferenciaror

- name: RailsClub 2016
  location: Moscow, Russia
  start_date: 2016-10-22
  end_date: 2016-10-22
  url: https://rubyrussia.club/
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeOXZhotgDX7Y7qBsr24cu7o

- name: London Ruby Unconference 2016
  location: London, UK
  start_date: 2016-10-22
  end_date: 2016-10-22
  url: http://www.eventbrite.com/e/london-ruby-unconference-tickets-27663867372?aff=github
  twitter: rubyunconf

- name: RubyConf Portugal 2016
  location: Braga, Portugal
  start_date: 2016-10-27
  end_date: 2016-10-28
  url: http://rubyconf.pt/
  twitter: rubyconfpt
  video_link: https://www.youtube.com/playlist?list=PLgGhdJEbwzoI6sUw_2wTlFHCGPRVoatln

- name: Keep Ruby Weird 2016
  location: Austin, TX
  start_date: 2016-10-28
  end_date: 2016-10-28
  url: https://2016.keeprubyweird.com/
  twitter: keeprubyweird
  video_link: http://confreaks.tv/events/keeprubyweird2016

- name: RubyWorld Conference 2016
  location: Matsue, Shimane, Japan
  start_date: 2016-11-03
  end_date: 2016-11-04
  url: http://2017.rubyworld-conf.org/en/
  twitter: rubyworldconf
  video_link: http://2016.rubyworld-conf.org/en/program/

- name: RubyConf 2016
  location: Cincinnati, OH
  start_date: 2016-11-10
  end_date: 2016-11-12
  url: http://rubyconf.org/
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyaMUYwB6tTX5p2Z6fOCdGRE

- name: Rails Israel 2016
  location: Tel Aviv, Israel
  start_date: 2016-11-14
  end_date: 2016-11-15
  twitter: railsisrael

- name: rubyday 2016
  location: Florence, Italy
  start_date: 2016-11-25
  end_date: 2016-11-26
  url: http://www.rubyday.it
  twitter: rubydayit
  video_link: https://www.youtube.com/playlist?list=PL5ImBN21eKvbFLhByXvzczzqtx9ApeKAY

- name: RubyConf Taiwan 2016
  location: Taipei, Taiwan
  start_date: 2016-12-02
  end_date: 2016-12-03
  url: https://2016.rubyconf.tw/
  twitter: rubyconftw
  video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpB7wxvDs02oGA9IRKw3dVYO

- name: RubyConf India 2017
  location: Kochi, India
  start_date: 2017-01-27
  end_date: 2017-01-29
  url: http://2017.rubyconfindia.org/
  twitter: rubyconfindia
  video_link: https://www.youtube.com/playlist?list=PLe872Yf6CJWHc6XDdHo_22hktStG866-6

- name: Rubyfuza 2017
  location: Cape Town, South Africa
  start_date: 2017-02-02
  end_date: 2017-02-04
  url: http://www.rubyfuza.org/2017/
  twitter: rubyfuza
  video_link: https://www.youtube.com/playlist?list=PLI113oIao_x5PHCdz0VLSKW4-Qp58pWOs

- name: Ruby devroom at FOSDEM 2017
  location: Brussels, Belgium
  start_date: 2017-02-03
  end_date: 2017-02-04
  url: http://fosdem.rubybelgium.be/
  twitter: ruby_fosdem

- name: RubyConf AU 2017
  location: Melbourne, Australia
  start_date: 2017-02-09
  end_date: 2017-02-10
  url: https://rubyconf.org.au/2017
  twitter: rubyconf_au
  video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc3hxsmj3AnPFf3RD4f3zfUl

- name: RubyConf Philippines 2017
  location: Bohol, Philippines
  start_date: 2017-03-16
  end_date: 2017-03-18
  url: http://rubyconf.ph/2017/
  twitter: rubyconfph
  video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSHKtxq2efDQc6EXTDqabxdV

- name: wroclove.rb 2017
  location: Wrocław, Poland
  start_date: 2017-03-17
  end_date: 2017-03-19
  url: https://2017.wrocloverb.com
  twitter: wrocloverb

- name: RubyConfLT 2017
  location: Vilnius, Lithuania
  start_date: 2017-04-01
  end_date: 2017-04-01
  url: https://rubyconf.lt/
  twitter: rubyconflt

- name: RubyConfBY 2017
  location: Minsk, Belarus
  start_date: 2017-04-02
  end_date: 2017-04-02
  url: https://2017.rubyconference.by/en/
  twitter: rubyconfby
  video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCBpR87Q5nw_3caqbVo71EP7

- name: RubyHACK 2017
  location: Salt Lake City, UT
  start_date: 2017-04-20
  end_date: 2017-04-21
  url: https://rubyhack.com/archives/2017
  twitter: utrubyhack
  video_link: https://confreaks.tv/events/rubyhack2017

- name: RailsConf 2017
  location: Phoenix, AZ
  start_date: 2017-04-25
  end_date: 2017-04-27
  url: http://www.railsconf.com/2017
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyarr-2jYCnnlb7wl-aEz4xt

- name: RubyC 2017
  location: Kyiv, Ukraine
  start_date: 2017-06-03
  end_date: 2017-06-04
  url: http://rubyc.eu/
  twitter: rubyc_eu
  video_link: https://rubyc.eu/posts/75

- name: RubyConf EA 2017
  location: Nairobi, Kenya
  start_date: 2017-06-08
  end_date: 2017-06-10
  url: http://rubyconf.nairuby.org/2017
  twitter: nairubyke
  video_link: https://www.youtube.com/playlist?list=PLb6Zr8jHuhjzIAKR7l2r81P-hxBUftT2-

- name: RubyNation 2017
  location: Arlington, VA
  start_date: 2017-06-16
  end_date: 2017-06-16
  url: http://www.rubynation.org/
  twitter: rubynation
  video_link: https://www.youtube.com/playlist?list=PLeGxIOPLk9EKE_zb0E63JywRkyUWjjFTk

- name: RedDotRubyConf 2017
  location: Singapore
  start_date: 2017-06-22
  end_date: 2017-06-23
  url: http://www.reddotrubyconf.com/
  twitter: reddotrubyconf
  video_link: http://confreaks.tv/events/reddotrubyconf2017

- name: GORUCO 2017
  location: New York, NY
  start_date: 2017-06-24
  end_date: 2017-06-24
  url: http://2017.goruco.com/
  twitter: goruco
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcybxOnh9S9Hk-RDRXZRkrWwR

- name: Grill.RB 2017
  location: Wrocław, Poland
  start_date: 2017-07-01
  end_date: 2017-07-02
  twitter: grill_rb
  video_link: https://www.youtube.com/playlist?list=PLDraF2Fjmu8VuZ8CohiG4EZuwHpUACUIN

- name: Brighton Ruby 2017
  location: Brighton, UK
  start_date: 2017-07-07
  end_date: 2017-07-07
  url: http://brightonruby.com/2017/
  twitter: brightonruby
  video_link: https://brightonruby.com/2017/

- name: DeccanRubyConf 2017
  location: Pune, India
  start_date: 2017-08-12
  end_date: 2017-08-12
  twitter: deccanrubyconf
  video_link: https://www.youtube.com/channel/UCaFWc_6VQ7lk11sU-AYUKtg

- name: RubyConf Colombia 2017
  location: Medellin, Colombia
  start_date: 2017-09-08
  end_date: 2017-09-09
  url: http://2017.rubyconf.co/
  twitter: rubyconfco
  video_link: https://www.youtube.com/playlist?list=PLq_08z5fuQgFnASevZeUy1l4lbaqoidcL

- name: RubyConf China 2017
  location: Hangzhou, China
  start_date: 2017-09-16
  end_date: 2017-09-17
  url: http://rubyconfchina.org

- name: RubyKaigi 2017
  location: Hiroshima, Japan
  start_date: 2017-09-18
  end_date: 2017-09-20
  url: http://rubykaigi.org/2017
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yaJalSEHY17E96ChjY-kF2D

- name: RailsClub 2017
  location: Moscow, Russia
  start_date: 2017-09-23
  end_date: 2017-09-23
  url: https://rubyrussia.club/
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeMBqHPF7HcO6O2WBjzfiUQw

- name: EuRuKo 2017
  location: Budapest, Hungary
  start_date: 2017-09-29
  end_date: 2017-09-30
  url: https://2017.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/playlist?list=PLCrwBqiOtwpIRdk4VMfD6hbFVHZoKOyMg

- name: Keep Ruby Weird 2017
  location: Austin, TX
  start_date: 2017-10-01
  end_date: 2017-10-01
  url: https://2017.keeprubyweird.com/
  twitter: keeprubyweird
  video_link: http://confreaks.tv/events/keeprubyweird2017

- name: Southeast Ruby 2017
  location: Nashville, TN
  start_date: 2017-10-05
  end_date: 2017-10-06
  url: https://southeastruby.com
  twitter: southeastruby
  video_link: https://www.youtube.com/watch?v=5wI0ss02leo&list=PLRO4gNnSWQ4LSAVV7_7BliuoFCRHIqVk0

- name: RubyConf Jakarta 2017
  location: Jakarta, Indonesia
  start_date: 2017-10-06
  end_date: 2017-10-07
  url: http://ruby.id/conf/2017/
  twitter: id_ruby

- name: London Ruby Unconference 2017
  location: London, UK
  start_date: 2017-10-07
  end_date: 2017-10-07
  url: https://www.eventbrite.com/e/london-ruby-unconference-tickets-36286901098?aff=rubyconferences
  twitter: rubyunconf

- name: RubyConf MY 2017
  location: Cyberjaya, Malaysia
  start_date: 2017-10-12
  end_date: 2017-10-13
  url: http://rubyconf.my/2017/
  twitter: rubyconfmy
  video_link: https://www.youtube.com/playlist?list=PLrD6VJeUSN28nfWhU5PwlD-9vgPNV3WsU

- name: Ruby Dev Summit 2017
  location: Online
  start_date: 2017-10-16
  end_date: 2017-10-21

- name: RubyWorld Conference 2017
  location: Matsue, Shimane, Japan
  start_date: 2017-11-01
  end_date: 2017-11-02
  url: http://2017.rubyworld-conf.org/en/
  twitter: rubyworldconf
  video_link: http://2017.rubyworld-conf.org/en/program/

- name: Kiwi Ruby 2017
  location: Wellington, New Zealand
  start_date: 2017-11-02
  end_date: 2017-11-03
  url: http://kiwi.ruby.nz
  twitter: kiwirubyconf
  video_link: https://www.youtube.com/playlist?list=PLqR1aFtg6FQKivt1jMU-dotStXiTY11GT

- name: RubyConf 2017
  location: New Orleans, LA
  start_date: 2017-11-15
  end_date: 2017-11-17
  url: https://rubyconf.org/
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyayGHjjxZOmVEGsxX-rczZt

- name: RubyConf Brazil 2017
  location: São Paulo, Brazil
  start_date: 2017-11-17
  end_date: 2017-11-18
  twitter: rubyconfbr

- name: Rails Israel 2017
  location: Tel Aviv, Israel
  start_date: 2017-11-28
  end_date: 2017-11-30
  twitter: railsisrael

- name: Ruby on Ice 2018
  location: Tegernsee, Germany
  start_date: 2018-01-26
  end_date: 2018-01-28
  url: https://rubyonice.com/
  twitter: rubyoniceconf

- name: Rubyfuza 2018
  location: Cape Town, South Africa
  start_date: 2018-02-01
  end_date: 2018-02-03
  url: http://www.rubyfuza.org
  twitter: rubyfuza
  video_link: https://www.youtube.com/playlist?list=PLI113oIao_x4i51ynrHhhNz3UpEDs0qxy

- name: RubyConf India 2018
  location: Bengaluru, India
  start_date: 2018-02-02
  end_date: 2018-02-10
  url: https://2018.rubyconfindia.org/
  twitter: RubyConfIndia
  video_link: https://www.youtube.com/playlist?list=PLe872Yf6CJWGYKLny9jFs9mLv0Z94m8k4

- name: RubyConf AU 2018
  location: Sydney, Australia
  start_date: 2018-03-08
  end_date: 2018-03-09
  url: https://www.rubyconf.org.au/2018
  twitter: rubyconf_au
  video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc2Xi0rotTPuPRQAoJnDU-my

- name: RubyConf Philippines 2018
  location: Manila, Philippines
  start_date: 2018-03-15
  end_date: 2018-03-17
  url: http://rubyconf.ph/
  twitter: rubyconfph
  video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSENtu25MLim42HJszfsXDt2

- name: wroclove.rb 2018
  location: Wrocław, Poland
  start_date: 2018-03-16
  end_date: 2018-03-18
  url: https://2018.wrocloverb.com
  twitter: wrocloverb
  video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDSMznObXnqyq5HbOqLucTz

- name: Bath Ruby 2018
  location: Bath, UK
  start_date: 2018-03-22
  end_date: 2018-03-23
  url: http://2018.bathruby.uk
  twitter: bathruby
  video_link: https://www.youtube.com/playlist?list=PLwdNEzbHNELWqMRxZzenE6Lgp16rPXu9A

- name: Isle of Ruby 2018
  location: Exeter, UK
  start_date: 2018-04-13
  end_date: 2018-04-15
  url: http://isleofruby.org/
  twitter: isleofruby

- name: RailsConf 2018
  location: Pittsburgh, PA
  start_date: 2018-04-17
  end_date: 2018-04-19
  url: https://railsconf.com
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyak-yFKj5IN3tDYOh5omMrH

- name: RubyConfBY 2018
  location: Minsk, Belarus
  start_date: 2018-04-21
  end_date: 2018-04-21
  url: https://rubyconference.by/2018
  twitter: rubyconfby
  video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCD5vCJvBlbUGTNd5KHO4AWL

- name: RubyConf Taiwan 2018
  location: Taipei, Taiwan
  start_date: 2018-04-27
  end_date: 2018-04-28
  url: https://2018.rubyconf.tw/
  twitter: rubyconftw
  video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpAdmjfDBiqiOKpk1PiCIb2A

- name: RubyHACK 2018
  location: Salt Lake City, UT
  start_date: 2018-05-03
  end_date: 2018-05-04
  url: https://rubyhack.com/archives/2018
  twitter: utrubyhack
  video_link: https://confreaks.tv/events/rubyhack2018

- name: Madison+ Ruby 2018
  location: Chicago, IL
  start_date: 2018-05-10
  end_date: 2018-05-11
  url: https://ti.to/adorable/madison-ruby-chicago/en
  twitter: MadisonRuby

- name: ROSSConf 2018
  location: Amsterdam, Netherlands
  start_date: 2018-05-11
  end_date: 2018-05-12
  url: https://rossconfams.eventbrite.co.uk
  twitter: rossconf

- name: Balkan Ruby 2018
  location: Sofia, Bulgaria
  start_date: 2018-05-25
  end_date: 2018-05-26
  url: http://balkanruby.com/
  twitter: balkanruby
  video_link: https://www.youtube.com/playlist?list=PLAkGYJoUfB0v4ssiPcL_OIM1-t_LssfAY

- name: RubyKaigi 2018
  location: Sendai, Japan
  start_date: 2018-05-31
  end_date: 2018-06-01
  url: http://rubykaigi.org/2018
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yZ8IJuzGOn3rj2dOvRLDdxL

- name: RubyC 2018
  location: Kyiv, Ukraine
  start_date: 2018-06-02
  end_date: 2018-06-03
  url: http://rubyc.eu/
  twitter: rubyc_eu
  video_link: https://rubyc.eu/posts/93

- name: Saint P Rubyconf 2018
  location: Saint Petersburg, Russia
  start_date: 2018-06-10
  end_date: 2018-06-10
  twitter: saintprug

- name: GORUCO 2018
  location: New York, NY
  start_date: 2018-06-16
  end_date: 2018-06-16
  url: http://goruco.com
  twitter: goruco
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcya2z3Q5AiwNqjV968p2TvHu

- name: RubyConf Kenya 2018
  location: Nairobi, Kenya
  start_date: 2018-06-22
  end_date: 2018-06-22
  url: http://rubyconf.nairuby.org/2018
  twitter: nairubyke

- name: RubyNation 2018
  location: Arlington, VA
  start_date: 2018-06-22
  end_date: 2018-06-22
  url: http://rubynation.org/
  twitter: rubynation

- name: Paris.rb Conf 2018
  location: Paris, France
  start_date: 2018-06-28
  end_date: 2018-06-29
  url: https://2018.rubyparis.org/
  twitter: parisrb
  video_link: https://www.youtube.com/playlist?list=PLjyiiigeVQV_mHcSnJnw_1LR4nzGrdF4l

- name: Brighton Ruby 2018
  location: Brighton, UK
  start_date: 2018-07-06
  end_date: 2018-07-06
  url: https://brightonruby.com/2018/
  twitter: brightonruby
  video_link: https://brightonruby.com/2018/

- name: Southeast Ruby 2018
  location: Nashville, TN
  start_date: 2018-08-02
  end_date: 2018-08-03
  url: https://southeastruby.com/
  twitter: southeastruby
  video_link: https://www.youtube.com/watch?v=-JpAUN6Ovok&list=PLRO4gNnSWQ4JNwiS-MyfIIejk2R_Y6UKR

- name: DeccanRubyConf 2018
  location: Pune, India
  start_date: 2018-08-04
  end_date: 2018-08-04
  url: http://www.deccanrubyconf.org/
  twitter: deccanrubyconf
  video_link: https://www.youtube.com/playlist?list=PLo3sQWbYZbsm02wEkMvD9QB1qNeARuAJa

- name: Grill.RB 2018
  location: Wrocław, Poland
  start_date: 2018-08-11
  end_date: 2018-08-12
  url: http://grillrb.com
  twitter: grill_rb

- name: EuRuKo 2018
  location: Vienna, Austria
  start_date: 2018-08-24
  end_date: 2018-08-25
  url: https://2018.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/channel/UCSApGhubxla1SMfB8MlryGw/videos

- name: Ruby Unconf 2018
  location: Hamburg, Germany
  start_date: 2018-10-05
  end_date: 2018-10-06
  url: http://rubyunconf.eu
  twitter: RubyUnconfEU
  video_link: https://www.youtube.com/playlist?list=PLvpu5WTDxTKXWZvsg9iR4a6AeHWw0Hzu4

- name: RubyRussia 2018
  location: Moscow, Russia
  start_date: 2018-10-06
  end_date: 2018-10-06
  url: https://rubyrussia.club/en
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeNz4UCJk9r-5nFklqvzL7vy

- name: Ruby Summit China 2018
  location: ZhengZhou, Henan, China
  start_date: 2018-10-13
  end_date: 2018-10-14
  url: http://rubysummit.cn/

- name: RubyConf MY 2018
  location: Kuala Lumpur, Malaysia
  start_date: 2018-10-25
  end_date: 2018-10-26
  url: http://rubyconf.my/
  twitter: rubyconfmy

- name: Pivorak Conf 1.0
  location: Lviv, Ukraine
  start_date: 2018-10-26
  end_date: 2018-10-26
  url: https://pivorak.com/
  video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu9BsDfI_e2y8vd8FVkeVvum

- name: RubyWorld Conference 2018
  location: Matsue, Japan
  start_date: 2018-11-01
  end_date: 2018-11-02
  url: http://2018.rubyworld-conf.org/
  twitter: rubyworldconf
  video_link: https://2018.rubyworld-conf.org/program/

- name: Keep Ruby Weird 2018
  location: Austin, TX
  start_date: 2018-11-09
  end_date: 2018-11-09
  url: https://2018.keeprubyweird.com
  twitter: keeprubyweird
  video_link: http://confreaks.tv/events/keeprubyweird2018

- name: RubyConf 2018
  location: Los Angeles, CA
  start_date: 2018-11-13
  end_date: 2018-11-15
  url: https://rubyconf.org/
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZEjH3kIyvIN0eZ4tuVEkBD

- name: RubyConf India 2019
  location: Goa, India
  start_date: 2019-01-20
  end_date: 2019-01-21
  url: http://rubyconfindia.org/
  twitter: rubyconfindia
  video_link: https://www.youtube.com/playlist?list=PLbgP71NCXCqEFr8nuY2mhAobKv_ldqL2f

- name: Pivorak Conf 2.0
  location: Lviv, Ukraine
  start_date: 2019-02-01
  end_date: 2019-02-01
  url: https://pivorak.com/
  video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu_0s6TbyKQwRGz97gYVchQM

- name: RubyConf AU 2019
  location: Melbourne, Australia
  start_date: 2019-02-07
  end_date: 2019-02-09
  url: https://rubyconf.org.au/2019
  twitter: rubyconf_au
  video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc3dTbvb8fIuzDFGTCaEdO3a

- name: Rubyfuza 2019
  location: Cape Town, South Africa
  start_date: 2019-02-07
  end_date: 2019-02-09
  url: http://www.rubyfuza.org
  twitter: rubyfuza
  video_link: https://www.youtube.com/playlist?list=PLI113oIao_x55gOvfDER9ocuEQD94kjjx

- name: Ruby on Ice 2019
  location: Tegernsee, Germany
  start_date: 2019-02-22
  end_date: 2019-02-24
  url: https://rubyonice.com/
  twitter: rubyoniceconf
  video_link: https://www.youtube.com/playlist?list=PLClLcexm3Iukf--UcFDw_DgKhvKpQEOX-

- name: wroclove.rb 2019
  location: Wrocław, Poland
  start_date: 2019-03-22
  end_date: 2019-03-24
  url: https://2019.wrocloverb.com
  twitter: wrocloverb
  video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDJvwOYLuu7jnprRKhuc7Cp

- name: RubyHACK 2019
  location: Salt Lake City, UT
  start_date: 2019-04-03
  end_date: 2019-04-04
  url: https://rubyhack.com
  twitter: utrubyhack
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYoLJFe8Y6TMgZgUkqlSQzN

- name: Rails Camp South 2019
  location: Bandera, TX
  start_date: 2019-04-05
  end_date: 2019-04-08
  url: https://us-south.rails.camp/
  twitter: railscampsouth

- name: RubyConfBY 2019
  location: Minsk, Belarus
  start_date: 2019-04-06
  end_date: 2019-04-06
  url: https://rubyconference.by/
  twitter: rubyconfby
  video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCCvTdTREN1pbu8ivniZEdlS

- name: rubyday 2019
  location: Verona, Italy
  start_date: 2019-04-10
  end_date: 2019-04-11
  url: https://2019.rubyday.it/
  twitter: rubydayit
  video_link: https://www.youtube.com/playlist?list=PLWK9j6ps_unmgzGOw3cbjS8ID-b-cF1d9

- name: Ruby Wine 2019
  location: Chișinău, Moldova
  start_date: 2019-04-13
  end_date: 2019-04-13
  url: https://www.facebook.com/events/551051368675115/
  video_link: https://www.youtube.com/playlist?list=PLRQ_gUZhiTmvN_KgcpEkREJF-tD43W7jZ

- name: RubyKaigi 2019
  location: Fukuoka, Japan
  start_date: 2019-04-18
  end_date: 2019-04-20
  url: https://rubykaigi.org/2019
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yYc9_jx9HkS_1WkOLKWnRw3

- name: RailsConf 2019
  location: Minneapolis, MN
  start_date: 2019-04-30
  end_date: 2019-05-02
  url: https://railsconf.com/
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyaOq3HlRm9h_Q_WhWKqm5xc

- name: krk-rb.pl 2019
  location: Cracow, Poland
  start_date: 2019-05-14
  end_date: 2019-05-15
  url: https://krk-rb.pl/

- name: Balkan Ruby 2019
  location: Sofia, Bulgaria
  start_date: 2019-05-17
  end_date: 2019-05-18
  url: https://balkanruby.com/
  twitter: balkanruby
  video_link: https://www.youtube.com/playlist?list=PLAkGYJoUfB0vutEvm7Z2dcrxbtAQfPUSp

- name: Pivorak Conf 3.0
  location: Lviv, Ukraine
  start_date: 2019-05-24
  end_date: 2019-05-24
  url: https://pivorak.com/
  twitter: pivorakmeetup
  video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu-hLU4bl6xn7J7PjQ8_uzyr

- name: Ruby Unconf 2019
  location: Hamburg, Germany
  start_date: 2019-05-25
  end_date: 2019-05-26
  url: http://rubyunconf.eu
  twitter: RubyUnconfEU
  video_link: https://www.youtube.com/playlist?list=PLvpu5WTDxTKWPJMPTC33amjQnl6sAEEvH

- name: Saint P Rubyconf 2019
  location: Saint Petersburg, Russia
  start_date: 2019-06-01
  end_date: 2019-06-02
  url: https://spbrubyconf.ru/
  twitter: saintpruby
  video_link: https://www.youtube.com/watch?v=CjOwKbf8L3I

- name: EuRuKo 2019
  location: Rotterdam, Netherlands
  start_date: 2019-06-21
  end_date: 2019-06-22
  url: https://2019.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/channel/UCWcOB8yVZDoPGdbvq8HR6IQ/videos

- name: Brighton Ruby 2019
  location: Brighton, UK
  start_date: 2019-07-05
  end_date: 2019-07-05
  url: https://brightonruby.com/2019
  twitter: brightonruby
  video_link: https://brightonruby.com/2019/

- name: RubyConf Kenya 2019
  location: Nairobi, Kenya
  start_date: 2019-07-25
  end_date: 2019-07-27
  url: http://rubyconf.nairuby.org/2019
  twitter: nairubyke

- name: RubyConf Taiwan 2019
  location: Taipei, Taiwan
  start_date: 2019-07-26
  end_date: 2019-07-27
  url: https://2019.rubyconf.tw
  twitter: rubyconftw
  video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpBgD6t068O_EZ4grSlUtl3Y

- name: Southeast Ruby 2019
  location: Nashville, TN
  start_date: 2019-08-01
  end_date: 2019-08-02
  url: https://southeastruby.com/
  twitter: southeastruby

- name: DeccanRubyConf 2019
  location: Pune, India
  start_date: 2019-08-10
  end_date: 2019-08-10
  url: https://www.deccanrubyconf.org/
  twitter: deccanrubyconf

- name: Grill.RB 2019
  location: Wrocław, Poland
  start_date: 2019-08-31
  end_date: 2019-09-01
  url: http://grillrb.com
  twitter: grill_rb
  video_link: https://www.youtube.com/playlist?list=PLDraF2Fjmu8WDwr5nInlqNzeiBk9sIsCt

- name: RubyConf TH 2019
  location: Bangkok, Thailand
  start_date: 2019-09-06
  end_date: 2019-09-07
  url: https://rubyconfth.com/past/2019
  twitter: rubyconfth
  video_link: https://www.youtube.com/playlist?list=PLM_LdV8tMIazzAKhtGxJvYCPCgP8HiB5k

- name: RubyC 2019
  location: Kyiv, Ukraine
  start_date: 2019-09-14
  end_date: 2019-09-15
  url: https://rubyc.eu/
  twitter: rubyc_eu
  video_link: https://www.youtube.com/playlist?list=PLmEf5ppiRneTkaPA4fz6KBQKq-jAvTRkb

- name: RubyConf Colombia 2019
  location: Medellín, Colombia
  start_date: 2019-09-20
  end_date: 2019-09-21
  url: https://rubyconf.co
  twitter: rubyconfco

- name: RubyRussia 2019
  location: Moscow, Russia
  start_date: 2019-09-28
  end_date: 2019-09-28
  url: https://rubyrussia.club/en
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeP3xDhqfTVCXZd8_L07QZ2c

- name: RubyConf Indonesia 2019
  location: Jakarta, Indonesia
  start_date: 2019-09-29
  end_date: 2019-09-29
  url: https://ruby.id/conf/2019/
  twitter: rubyconfid

- name: Ancient City Ruby 2019
  location: Jacksonville Beach, FL
  start_date: 2019-10-03
  end_date: 2019-10-04
  url: http://ancientcityruby.com/
  twitter: ancientcityruby
  video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJODBm0-VFsXvUFx1oidLyKa

- name: Pivorak Conf 4.0
  location: Lviv, Ukraine
  start_date: 2019-10-18
  end_date: 2019-10-19
  url: https://pivorak.com/
  twitter: pivorakmeetup
  video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu_hJOA1zMpCliWx5YB2a3vP

- name: SolidusConf 2019
  location: Salt Lake City, UT
  start_date: 2019-10-21
  end_date: 2019-10-24
  url: http://conf.solidus.io
  twitter: solidusIO
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyaJKKOulAmyi-z323OPY5mW

- name: Kiwi Ruby 2019
  location: Wellington, New Zealand
  start_date: 2019-11-01
  end_date: 2019-11-01
  url: https://kiwi.ruby.nz
  twitter: kiwirubyconf

- name: RubyWorld Conference 2019
  location: Matsue, Japan
  start_date: 2019-11-07
  end_date: 2019-11-08
  url: https://2019.rubyworld-conf.org/en/
  twitter: rubyworldconf

- name: RubyConf 2019
  location: Nashville, TN
  start_date: 2019-11-18
  end_date: 2019-11-20
  url: https://rubyconf.org
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZDE8nFrKaqkpd-XK4huygU

- name: RubyConf Brazil 2019
  location: São Paulo, Brazil
  start_date: 2019-11-28
  end_date: 2019-11-29
  url: https://callforpapers.locaweb.com.br/events/rubyconf-2019
  twitter: rubyconfbr

- name: Birmingham on Rails 2020
  location: Birmingham, AL
  start_date: 2020-01-31
  end_date: 2020-01-31
  url: http://birminghamonrails.com
  twitter: bhmonrails
  video_link: https://www.youtube.com/playlist?&list=PLE7tQUdRKcyYC2lZzwTvEeJXghm4Ym4ZX

- name: Rubyfuza 2020
  location: Cape Town, South Africa
  start_date: 2020-02-06
  end_date: 2020-02-08
  url: https://www.rubyfuza.org
  twitter: rubyfuza

- name: Paris.rb Conf 2020
  location: Paris, France
  url: https://2020.rubyparis.org/
  start_date: 2020-02-18
  end_date: 2020-02-19
  twitter: parisrb
  video_link: https://www.youtube.com/playlist?list=PLjyiiigeVQV-rqM4LD2SUbUfxXLuta1yU

- name: RubyConf AU 2020
  location: Melbourne, Australia
  url: https://www.rubyconf.org.au/2020
  start_date: 2020-02-20
  end_date: 2020-02-21
  twitter: rubyconf_au
  video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc1G0L8h-rMtO3fBSi4PJK26

- name: wroclove.rb 2020
  location: Wrocław, Poland
  start_date: 2020-03-20
  end_date: 2020-03-22
  url: https://2020.wrocloverb.com
  twitter: wrocloverb
  status: Cancelled

- name: Ruby Retreat NZ 2020
  location: Mt Cheeseman, near Christchurch, New Zealand
  url: https://retreat.ruby.nz
  start_date: 2020-03-27
  end_date: 2020-03-30
  twitter: RubyNewZealand
  status: Cancelled

- name: Ruby for Good by the Bay 2020
  location: Sausalito, CA
  start_date: 2020-04-03
  end_date: 2020-04-05
  url: https://rubybythebay.org/
  twitter: rubyforgood

- name: Ruby Wine 2.0
  location: Online
  start_date: 2020-04-04
  end_date: 2020-04-04
  url: https://www.rubywine.org
  twitter: rubymeditation

- name: RubyConf India 2020
  location: Goa, India
  start_date: 2020-04-25
  end_date: 2020-04-26
  url: https://rubyconfindia.org
  twitter: rubyconfindia
  status: Cancelled

# RailsConf 2020.2 Couch Edition
- name: RailsConf 2020
  location: Online
  start_date: 2020-05-05
  end_date: 2020-05-05
  url: https://railsconf.com/
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZ-TzxlxdLvh6tDUfZHqm76

- name: Balkan Ruby 2020
  location: Sofia, Bulgaria
  start_date: 2020-05-15
  end_date: 2020-05-16
  url: https://balkanruby.com
  twitter: balkanruby
  status: Cancelled

- name: Pivorak Conf 5.0
  location: Online
  start_date: 2020-05-22
  end_date: 2020-05-22
  url: https://pivorak.com/
  twitter: pivorakmeetup
  video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu86K63M_slCEVVNTc1QAUWm

- name: Ruby Unconf 2020
  location: Hamburg, Germany
  start_date: 2020-06-06
  end_date: 2020-06-07
  url: https://2020.rubyunconf.eu/
  twitter: rubyunconfeu
  status: Cancelled

- name: Saint P Rubyconf 2020
  location: Saint Petersburg, Russia
  start_date: 2020-06-06
  end_date: 2020-06-07
  url: https://spbrubyconf.ru/
  twitter: saintpruby
  status: Cancelled

- name: Brighton Ruby 2020
  location: Online
  start_date: 2020-07-03
  end_date: 2020-07-03
  url: https://brightonruby.com/2020
  twitter: brightonruby
  video_link: https://brightonruby.com/2020/

- name: RubyNess 2020
  location: Inverness, Scotland
  start_date: 2020-07-16
  end_date: 2020-07-17
  url: https://rubyness.org/
  twitter: rubynessconf
  status: Cancelled

- name: RubyConfBY 2020
  location: Online
  start_date: 2020-07-18
  end_date: 2020-07-19
  url: https://rubyconference.by/
  twitter: RubyConfBY
  video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCCle4AS77lvMYxg2Eqkd5dT

- name: NoRuKo 2020
  location: Online
  start_date: 2020-08-21
  end_date: 2020-08-21
  url: https://www.noruko.org
  twitter: amsrb
  video_link: https://www.youtube.com/playlist?list=PL9_A7olkztLlmJIAc567KQgKcMi7-qnjg

- name: RubyKaigi 2020 Takeout
  location: Online
  start_date: 2020-09-04
  end_date: 2020-09-05
  url: https://rubykaigi.org/2020-takeout
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yZeLpdOLhYwORIF9UjBAFHw

- name: RubyC 2020
  location: Kyiv, Ukraine
  start_date: 2020-09-12
  end_date: 2020-09-13
  url: https://rubyc.eu/
  twitter: rubyc_eu
  status: Cancelled

- name: rubyday 2020
  location: Online
  start_date: 2020-09-16
  end_date: 2020-09-16
  url: https://2020.rubyday.it
  twitter: rubydayit
  video_link: https://www.youtube.com/playlist?list=PLWK9j6ps_unl0S5Xmi6FVfDLFUkntQTfK

- name: Kaigi on Rails 2020
  location: Tokyo, Japan
  status: Cancelled
  start_date: 2020-09-28
  end_date: 2020-09-29
  url: https://kaigionrails.org/2020
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails

- name: Kaigi on Rails 2020 - Stay Home Edition
  location: Online
  start_date: 2020-10-03
  end_date: 2020-10-03
  url: https://kaigionrails.org/2020
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails

- name: RubyConf TH 2020
  location: Bangkok, Thailand
  start_date: 2020-10-16
  end_date: 2020-10-17
  url: https://rubyconfth.com/
  twitter: rubyconfth
  status: Cancelled

- name: ROSSConf 2020
  location: Online
  start_date: 2020-10-23
  end_date: 2020-10-23
  url: https://www.rossconf.io/event/remote/
  twitter: rossconf
  video_link: https://www.youtube.com/playlist?list=PL9_A7olkztLkFMYU2ZgpL5XZ6UKlqFZrB

- name: RubyRussia 2020
  location: Online
  start_date: 2020-11-13
  end_date: 2020-11-15
  url: https://rubyrussia.club
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeO_YkVRot6JOLgTVSH9uUEB

- name: RubyConf 2020
  location: Houston, TX
  start_date: 2020-11-17
  end_date: 2020-11-19
  url: https://rubyconf.org
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLbHJudTY1K0cyDs1ZwFLzlfQqvkDKt17N

- name: RubyWorld Conference 2020
  location: Online
  start_date: 2020-12-17
  end_date: 2020-12-17
  url: https://2020.rubyworld-conf.org/en/
  twitter: rubyworldconf
  video_link: https://www.youtube.com/watch?v=2fldr2HcuVw

- name: rubyday 2021
  location: Online
  start_date: 2021-04-07
  end_date: 2021-04-07
  url: https://2021.rubyday.it
  twitter: rubydayit

- name: RailsConf 2021
  location: Online
  start_date: 2021-04-12
  end_date: 2021-04-15
  url: https://railsconf.com/
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLbHJudTY1K0c8N1-PPyiQxlHNzJIzyJv6

- name: EuRuKo 2021
  location: Online
  start_date: 2021-05-28
  end_date: 2021-05-29
  url: https://2021.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/playlist?list=PLZW-kXE0oRyknRwEUrg5o491KomjkNU16

- name: Saint P Rubyconf 2021
  location: Saint Petersburg, Russia
  start_date: 2021-06-05
  end_date: 2021-06-05
  url: https://spbrubyconf.ru/
  twitter: saintpruby
  video_link: https://www.youtube.com/watch?v=MIX8S3n9Nwc

- name: EMEA on Rails 2021
  location: Online
  start_date: 2021-06-09
  end_date: 2021-06-09
  url: https://www.emeaonrails.com/
  twitter: emeaonrails

- name: RubyConf Brazil 2021
  location: Online
  start_date: 2021-07-29
  end_date: 2021-07-30
  url: https://online.rubyconf.com.br/
  twitter: rubyconfbr

- name: African Ruby Mini-Conference 2021
  location: Online
  start_date: 2021-08-12
  end_date: 2021-08-12
  url: http://conference.nairuby.org/
  twitter: NairubyKE
  video_link: https://www.youtube.com/playlist?list=PLb6Zr8jHuhjz_v8223h1fWpCJjzy87iRZ

- name: RubyKaigi 2021 Takeout
  location: Online
  start_date: 2021-09-09
  end_date: 2021-09-11
  url: https://rubykaigi.org/2021-takeout
  twitter: rubykaigi
  video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yYgc4sx2Dkb7WWcfflbt6AP

- name: RubyRussia 2021
  location: Online
  start_date: 2021-09-24
  end_date: 2021-09-25
  url: https://rubyrussia.club/
  twitter: railsclub_ru
  video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeMfiEGak_zwF_ULP8Rc6HcL

- name: Kaigi on Rails 2021
  location: Online
  start_date: 2021-10-22
  end_date: 2021-10-23
  url: https://kaigionrails.org/2021
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails

- name: RubyConf 2021
  location: Denver, CO
  start_date: 2021-11-08
  end_date: 2021-11-10
  url: https://rubyconf.org
  twitter: rubyconf
  video_link: https://www.youtube.com/watch?v=paZ5_3F22V8&list=PLbHJudTY1K0f0oMhWtY-UyzOb7tUlaHps

- name: Sin City Ruby 2022
  location: Las Vegas, NV
  start_date: 2022-03-24
  end_date: 2022-03-25
  url: https://www.sincityruby.com

- name: RailsConf 2022
  location: Portland, OR
  start_date: 2022-05-17
  end_date: 2022-05-19
  url: https://railsconf.org
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyb2Mjtd1RBjeP3Jt9RukU7G

- name: Brighton Ruby 2022
  location: Brighton, UK
  start_date: 2022-06-30
  end_date: 2022-06-30
  url: https://brightonruby.com/2022
  twitter: brightonruby
  video_link: https://brightonruby.com/2022/

- name: RubyConf India 2022
  location: Pune, India
  start_date: 2022-08-27
  end_date: 2022-08-27
  url: https://rubyconf.in/
  twitter: rubyconfindia

- name: Rails Camp West 2022
  location: Diablo Lake, WA
  start_date: 2022-08-30
  end_date: 2022-09-02
  url: https://west.railscamp.us/2022
  twitter: railscamp_usa

- name: RubyKaigi 2022
  location: Mie, Japan
  start_date: 2022-09-08
  end_date: 2022-09-10
  url: https://rubykaigi.org/2022
  twitter: rubykaigi

- name: wroclove.rb 2022
  location: Wrocław, Poland
  start_date: 2022-09-16
  end_date: 2022-09-18
  url: https://2022.wrocloverb.com
  twitter: wrocloverb
  video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDWafhnWni-CwHkPJJuc0e5

- name: The Rails SaaS Conference 2022
  location: Los Angeles, CA
  start_date: 2022-10-06
  end_date: 2022-10-07
  url: https://railssaas.com/

- name: EuRuKo 2022
  location: Helsinki, Finland
  start_date: 2022-10-13
  end_date: 2022-10-14
  url: https://2022.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/playlist?list=PLZW-kXE0oRykcraQ1b6tT5ozKPeK-Jttq

- name: Kaigi on Rails 2022
  location: Online
  start_date: 2022-10-21
  end_date: 2022-10-22
  url: https://kaigionrails.org/2022
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails

- name: RubyConf 2022 Mini
  location: Providence, RI
  start_date: 2022-11-15
  end_date: 2022-11-17
  url: https://www.rubyconfmini.com
  twitter: rubyconfmini
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZYz0O3d9ZDdo0-BkOWhrSk

- name: RubyConf 2022
  location: Houston, TX
  start_date: 2022-11-29
  end_date: 2022-12-01
  url: https://rubyconf.org/
  twitter: rubyconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZYz0O3d9ZDdo0-BkOWhrSk

- name: RubyConf TH 2022
  location: Bangkok, Thailand
  start_date: 2022-12-09
  end_date: 2022-12-10
  url: https://rubyconfth.com/past/2022
  twitter: rubyconfth
  video_link: https://www.youtube.com/playlist?list=PLM_LdV8tMIaxpMTv9dnWk3cq61xJcE2Pv
  announced_on: 2022-07-18
  cfp_link: https://papercall.io/rubyconfth2022
  cfp_open_date: 2022-08-16
  cfp_close_date: 2022-09-30

- name: Ruby on Rails Global Summit 2023
  location: Online
  start_date: 2023-01-24
  end_date: 2023-01-25
  url: https://events.geekle.us/ruby/
  twitter: geekleofficial

- name: RubyConf AU 2023
  location: Melbourne, Australia
  start_date: 2023-02-20
  end_date: 2023-02-21
  url: https://www.rubyconf.org.au
  twitter: rubyconf_au

- name: RailsConf 2023
  location: Atlanta, Georgia
  start_date: 2023-04-24
  end_date: 2023-04-26
  url: https://railsconf.org
  twitter: railsconf
  video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyao1oqQA8dwG_uOk3-QZziO

- name: RubyKaigi 2023
  location: Nagano, Japan
  start_date: 2023-05-11
  end_date: 2023-05-13
  url: https://rubykaigi.org/2023
  twitter: rubykaigi
  reg_phrase: Registration open

- name: The Rails SaaS Conference 2023
  location: Athens, Greece
  start_date: 2023-06-01
  end_date: 2023-06-02
  url: https://railssaas.com/
  twitter: railssaas

- name: Blue Ridge Ruby 2023
  location: Asheville, NC
  start_date: 2023-06-08
  end_date: 2023-06-09
  url: https://blueridgeruby.com
  twitter: blueridgeruby

- name: Ruby Unconf 2023
  location: Hamburg, Germany
  start_date: 2023-06-10
  end_date: 2023-06-11
  url: https://2023.rubyunconf.eu
  twitter: rubyunconfeu

- name: rubyday 2023
  location: Verona, Italy
  start_date: 2023-06-16
  end_date: 2023-06-16
  url: https://2023.rubyday.it
  twitter: rubydayit

- name: Brighton Ruby 2023
  location: Brighton, UK
  start_date: 2023-06-30
  end_date: 2023-06-30
  url: https://brightonruby.com/2023/
  video_link: https://brightonruby.com/2023/
  twitter: brightonruby
  mastodon: https://ruby.social/@brightonruby

- name: Ruby Warsaw Community Conference 2023 Summer Edition
  location: Warsaw, Poland
  start_date: 2023-07-21
  end_date: 2023-07-21
  url: https://www.rubycommunityconference.com/summer2023.html
  twitter: visualitypl
  video_link: https://www.youtube.com/playlist?list=PLvMNoWK93wtmlQyKf59wu0IZk9N7ZpWpJ

- name: Ruby for Good 2023
  location: Washington, DC
  start_date: 2023-07-27
  end_date: 2023-07-30
  url: https://rubyforgood.org/events
  twitter: rubyforgood

- name: RubyConf China 2023
  location: Shanghai, China
  start_date: 2023-08-19
  end_date: 2023-08-20
  url: https://www.rubyconfchina.org

- name: RubyConf India 2023
  location: Pune, India
  start_date: 2023-08-26
  end_date: 2023-08-27
  url: https://rubyconf.in/
  twitter: rubyconfindia
  reg_phrase: Buy tickets!

- name: Osaka Ruby Kaigi 03
  location: Osaka, Japan
  start_date: 2023-09-09
  end_date: 2023-09-09
  url: https://regional.rubykaigi.org/osaka03/
  twitter: rubykansai

- name: wroclove.rb 2023
  location: Wrocław, Poland
  start_date: 2023-09-15
  end_date: 2023-09-17
  url: https://2023.wrocloverb.com
  twitter: wrocloverb
  video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDwTvPjY1F_7ccYO7O26RJ9

- name: Rails Camp West 2023
  location: North Shore O’ahu, Hawaii, HI
  start_date: 2023-09-15
  end_date: 2023-09-18
  url: https://west.railscamp.us/2023
  twitter: railscamp_usa

- name: EuRuKo 2023
  location: Vilnius, Lithuania
  start_date: 2023-09-21
  end_date: 2023-09-23
  url: https://2023.euruko.org
  twitter: euruko
  video_link: https://www.youtube.com/playlist?list=PLZW-kXE0oRyljniGHqYqtQVIXoI4M97ck

- name: Friendly.rb 2023
  location: Bucharest, Romania
  start_date: 2023-09-27
  end_date: 2023-09-28
  url: https://friendlyrb.com/
  twitter: friendlyrb
  mastodon: https://ruby.social/@friendlyrb

- name: RubyRussia 2023
  location: Online
  start_date: 2023-09-30
  end_date: 2023-09-30
  url: https://rubyrussia.club/
  twitter: railsclub_ru
  video_link: https://www.youtube.com/watch?v=1bN2uBDylQU

- name: Rails World 2023
  location: Amsterdam, Netherlands
  start_date: 2023-10-05
  end_date: 2023-10-06
  url: https://rubyonrails.org/world/2023
  twitter: rails
  video_link: https://www.youtube.com/playlist?list=PLHFP2OPUpCeY9IX3Ht727dwu5ZJ2BBbZP

- name: Rocky Mountain Ruby 2023
  location: Boulder, CO
  start_date: 2023-10-05
  end_date: 2023-10-06
  url: https://2023.rockymtnruby.dev
  mastodon: https://ruby.social/@rockymntruby

- name: RubyConf TH 2023
  location: Bangkok, Thailand
  start_date: 2023-10-06
  end_date: 2023-10-07
  url: https://rubyconfth.com/past/2023/
  twitter: rubyconfth
  mastodon: https://ruby.social/@rubyconfth
  cfp_open_date: 2023-04-03
  cfp_close_date: 2023-06-04
  cfp_link: https://www.papercall.io/rubyconfth2023
  video_link: https://www.youtube.com/playlist?list=PLM_LdV8tMIay0GaJcCHegGyk0MGyQIVA6
  announced_on: 2023-03-31

- name: Ruby Retreat 2023
  location: Mount Cheeseman, Aotearoa, New Zealand
  start_date: 2023-10-27
  end_date: 2023-10-30
  url: https://retreat.ruby.nz

- name: Kaigi on Rails 2023
  location: Tokyo, Japan
  start_date: 2023-10-27
  end_date: 2023-10-28
  url: https://kaigionrails.org/2023/
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails

- name: RubyWorld Conference 2023
  location: Matsue, Japan
  start_date: 2023-11-09
  end_date: 2023-11-10
  url: http://2023.rubyworld-conf.org/en/
  twitter: rubyworldconf

- name: RubyConf 2023
  location: San Diego, CA
  start_date: 2023-11-13
  end_date: 2023-11-15
  url: https://rubyconf.org
  twitter: rubyconf
  mastodon: https://ruby.social/@rubyconf

- name: Helvetic Ruby 2023
  location: Bern, Switzerland
  start_date: 2023-11-24
  end_date: 2023-11-24
  url: https://helvetic-ruby.ch/2023
  twitter: helvetic_ruby
  mastodon: https://ruby.social/@helvetic_ruby
  video_link: https://www.youtube.com/playlist?list=PL4jngagx9f7TIyNkSkS15oDrVPCa7LXsT

- name: RubyConf Taiwan 2023
  location: Taipei, Taiwan
  start_date: 2023-12-15
  end_date: 2023-12-16
  twitter: rubyconftw
  url: https://2023.rubyconf.tw
  cfp_open_date: 2023-08-03
  cfp_close_date: 2023-10-20
  cfp_link: https://cfp.rubyconf.tw/activities/2023

- name: Ruby Warsaw Community Conference 2024 Winter Edition
  location: Warsaw, Poland
  start_date: 2024-02-02
  end_date: 2024-02-02
  url: https://www.rubycommunityconference.com/winter2024
  twitter: visualitypl

- name: Ruby devroom at FOSDEM 2024
  location: Brussels, Belgium
  start_date: 2024-02-03
  end_date: 2024-02-04
  twitter: rubybelgium
  url: https://fosdem.rubybelgium.be
  cfp_close_date: 2023-12-01
  cfp_link: https://pretalx.fosdem.org/fosdem-2024/cfp

- name: Sin City Ruby 2024
  location: Las Vegas, NV
  start_date: 2024-03-21
  end_date: 2024-03-22
  url: https://www.sincityruby.com

- name: Tropical.rb 2024
  location: São Paulo, Brazil
  start_date: 2024-04-04
  end_date: 2024-04-05
  url: https://www.tropicalrb.com/
  twitter: tropical_rb
  mastodon: https://ruby.social/@tropicalrb
  cfp_open_date: 2023-11-28
  cfp_close_date: 2024-01-10
  cfp_link: https://www.papercall.io/tropical-rb

- name: Ruby in Common 2024
  location: Sydney, Australia
  start_date: 2024-04-10
  end_date: 2024-04-10
  url: https://rubyincommon.org/

- name: RubyConf AU 2024
  location: Sydney, Australia
  start_date: 2024-04-11
  end_date: 2024-04-12
  url: https://rubyconf.org.au/
  twitter: rubyconf_au
  cfp_open_date: 2023-11-14
  cfp_close_date: 2024-01-12
  cfp_link: https://sessionize.com/rubyconf-au-2024

- name: wroclove.rb 2024
  location: Wrocław, Poland
  start_date: 2024-04-12
  end_date: 2024-04-14
  url: https://2024.wrocloverb.com
  twitter: wrocloverb
  mastodon: https://ruby.social/@wrocloverb/
  cfp_open_date: 2023-12-11
  cfp_close_date: 2024-01-31
  cfp_link: https://forms.gle/bgTVhWZzjRV74F1x7

- name: Balkan Ruby 2024
  location: Sofia, Bulgaria
  start_date: 2024-04-26
  end_date: 2024-04-27
  url: https://balkanruby.com/2024
  twitter: balkanruby
  cfp_open_date: 2023-11-20
  cfp_close_date: 2024-02-02
  cfp_link: https://forms.gle/NJY9PJWpud39ZQAr8

- name: RailsConf 2024
  location: Detroit, MI
  start_date: 2024-05-07
  end_date: 2024-05-09
  url: https://www.railsconf.com
  twitter: railsconf
  mastodon: https://ruby.social/@railsconf
  cfp_open_date: 2024-01-24
  cfp_close_date: 2024-02-13
  cfp_link: https://sessionize.com/railsconf2024
  video_link: https://www.youtube.com/playlist?list=PLbHJudTY1K0chrs_E_XFz2pOJ3d8jCayh

- name: RubyKaigi 2024
  location: Naha, Okinawa, Japan
  start_date: 2024-05-15
  end_date: 2024-05-17
  url: https://rubykaigi.org/2024
  twitter: rubykaigi
  mastodon: https://ruby.social/@rubykaigi
  cfp_open_date: 2023-12-25
  cfp_close_date: 2024-01-31
  cfp_link: https://cfp.rubykaigi.org/events/2024

- name: Helvetic Ruby 2024
  location: Zurich, Switzerland
  start_date: 2024-05-17
  end_date: 2024-05-17
  url: https://helvetic-ruby.ch/2024
  twitter: helvetic_ruby
  mastodon: https://ruby.social/@helvetic_ruby
  cfp_open_date: 2024-01-19
  cfp_close_date: 2024-02-25
  cfp_link: https://helvetic-ruby.ch/call-for-speakers
  video_link: https://www.youtube.com/playlist?list=PL4jngagx9f7RGaAjXE0PR3z_jsA9cyCji

- name: Blue Ridge Ruby 2024
  location: Asheville, NC
  start_date: 2024-05-30
  end_date: 2024-05-31
  url: https://blueridgeruby.com
  twitter: blueridgeruby
  mastodon: https://ruby.social/@blueridgeruby
  cfp_open_date: 2024-01-18
  cfp_close_date: 2024-03-01
  cfp_link: https://blueridgeruby.com/cfp

- name: Ruby for Good 2024
  location: Washington, DC
  start_date: 2024-05-30
  end_date: 2024-06-02
  url: https://rubyforgood.org/events
  twitter: rubyforgood

- name: rubyday 2024
  location: Verona, Italy
  start_date: 2024-05-31
  end_date: 2024-05-31
  url: https://2024.rubyday.it
  twitter: rubydayit
  cfp_open_date: 2023-11-03
  cfp_close_date: 2024-01-31
  cfp_link: https://2024.rubyday.it/welcome/cfp.html

- name: Ruby Unconf 2024
  location: Hamburg, Germany
  start_date: 2024-06-08
  end_date: 2024-06-09
  url: https://rubyunconf.eu
  twitter: rubyunconfeu
  mastodon: https://ruby.social/@rubyunconf

- name: Baltic Ruby 2024
  location: Malmö, Sweden
  start_date: 2024-06-13
  end_date: 2024-06-15
  url: https://balticruby.org/archive/2024
  twitter: balticruby
  cfp_open_date: 2024-02-26
  cfp_close_date: 2024-04-07
  cfp_link: https://www.papercall.io/balticruby
  video_link: https://balticruby.org/archive/2024/recordings

- name: Brighton Ruby 2024
  location: Brighton, UK
  start_date: 2024-06-28
  end_date: 2024-06-28
  url: https://brightonruby.com
  twitter: brightonruby
  mastodon: https://ruby.social/@brightonruby
  cfp_open_date: 2024-01-21
  cfp_close_date: 2024-02-29
  cfp_link: https://forms.reform.app/goodscary/brighton-ruby-2024-cfp/gci0d6

- name: Ruby Warsaw Community Conference 2024 Summer Edition
  location: Warsaw, Poland
  start_date: 2024-07-19
  end_date: 2024-07-19
  url: https://www.rubycommunityconference.com/summer2024
  twitter: visualitypl

- name: RedDotRubyConf 2024
  location: Singapore
  start_date: 2024-07-25
  end_date: 2024-07-26
  url: https://reddotrubyconf.com
  twitter: reddotrubyconf
  mastodon: https://ruby.social/@reddotrubyconf
  cfp_link: https://reddotrubyconf.com/papers/new
  cfp_open_date: 2024-03-22
  cfp_close_date: 2024-06-01

- name: RubyConf Africa 2024
  location: Nairobi, Kenya
  start_date: 2024-07-26
  end_date: 2024-07-27
  url: https://rubyconf.africa/
  twitter: ruby_african
  cfp_open_date: 2024-03-20
  cfp_close_date: 2024-07-20
  cfp_link: https://www.papercall.io/rubyconfafrica2024

- name: Madison+ Ruby 2024
  location: Madison, WI
  start_date: 2024-08-01
  end_date: 2024-08-02
  url: https://madisonruby.com
  twitter: madisonruby
  cfp_open_date: 2024-03-15
  cfp_close_date: 2024-04-30
  cfp_link: https://cfp.madisonruby.com/events/2024/
  announced_on: 2023-11-14

- name: Osaka RubyKaigi 04
  location: Osaka, Japan
  start_date: 2024-08-24
  end_date: 2024-08-24
  url: https://regional.rubykaigi.org/osaka04/
  announced_on: 2024-03-28

- name: Rails Camp West 2024
  location: Cascade, ID
  start_date: 2024-08-27
  end_date: 2024-08-30
  url: https://west.railscamp.us/2024
  twitter: railscamp_usa
  announced_on: 2024-02-29
  status: Cancelled

- name: Fukuoka RubyistKaigi 04
  location: Fukuoka, Japan
  start_date: 2024-09-07
  end_date: 2024-09-07
  url: https://regional.rubykaigi.org/fukuoka04/
  announced_on: 2023-12-14

- name: EuRuKo 2024
  location: Sarajevo, Bosnia and Herzegovina
  start_date: 2024-09-11
  end_date: 2024-09-13
  url: https://2024.euruko.org
  twitter: euruko
  mastodon: https://ruby.social/@Euruko
  cfp_open_date: 2024-01-12
  cfp_close_date: 2024-04-15
  cfp_link: https://www.papercall.io/euruko2024
  announced_on: 2023-11-27

- name: Friendly.rb 2024
  location: Bucharest, Romania
  start_date: 2024-09-18
  end_date: 2024-09-19
  url: https://friendlyrb.com/
  twitter: friendlyrb
  mastodon: https://ruby.social/@friendlyrb
  cfp_open_date: 2024-03-29
  cfp_close_date: 2024-07-01
  cfp_link: https://friendlyrb.com/cfp
  announced_on: 2023-11-01

- name: Rails World 2024
  location: Toronto, Canada
  start_date: 2024-09-26
  end_date: 2024-09-27
  url: https://rubyonrails.org/world/2024
  twitter: rails
  video_link: https://www.youtube.com/playlist?list=PLHFP2OPUpCeb182aDN5cKZTuyjn3Tdbqx
  # Original CFP
  # cfp_open_date: 2024-02-05
  # cfp_close_date: 2024-03-21
  # cfp_link: https://sessionize.com/rails-world/

  # Lightning Talk CFP
  cfp_open_date: 2024-08-30
  cfp_close_date: 2024-09-10
  cfp_link: https://docs.google.com/forms/d/e/1FAIpQLSdTKiwbhAo4leeOl-HPIG2gFVzvmWjEtBFV6mC4ueY2Gso44g/viewform
  announced_on: 2023-11-30

- name: RubyRussia 2024
  location: Moscow, Russia
  start_date: 2024-10-02
  end_date: 2024-10-02
  url: https://rubyrussia.club/
  twitter: railsclub_ru
  announced_on: 2024-09-12

- name: Matsue RubyKaigi 11
  location: Matsue, Japan
  start_date: 2024-10-05
  end_date: 2024-10-05
  url: https://matsue.rubyist.net/matrk11/
  announced_on: 2024-03-21

- name: Rocky Mountain Ruby 2024
  location: Boulder, CO
  start_date: 2024-10-07
  end_date: 2024-10-08
  url: https://2024.rockymtnruby.dev
  twitter: rmrubyconf
  mastodon: https://ruby.social/@rockymntruby
  cfp_open_date: 2024-05-15
  cfp_close_date: 2024-06-30
  cfp_link: https://sessionize.com/rocky-mountain-ruby
  announced_on: 2024-04-17

- name: Rubyfuza 2024
  location: Cape Town, South Africa
  start_date: 2024-10-17
  end_date: 2024-10-18
  url: https://www.rubyfuza.org
  twitter: rubyfuza
  cfp_open_date: 2023-12-05
  cfp_close_date: 2024-08-10
  cfp_link: https://www.papercall.io/rubyfuza-2024
  status: Cancelled
  announced_on: 2023-10-18

- name: Ruby Retreat 2024
  location: Warrnambool, VIC, Australia
  url: https://retreat.ruby.org.au/
  start_date: 2024-10-18
  end_date: 2024-10-21
  announced_on: 2024-04-12

- name: Haggis Ruby 2024
  location: Edinburgh, Scotland
  start_date: 2024-10-24
  end_date: 2024-10-24
  url: https://haggisruby.co.uk
  mastodon: https://ruby.social/@haggisruby
  announced_on: 2024-07-04

- name: Kaigi on Rails 2024
  location: Tokyo, Japan
  start_date: 2024-10-25
  end_date: 2024-10-26
  url: https://kaigionrails.org/2024/
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails
  cfp_open_date: 2024-07-01
  cfp_close_date: 2024-07-31
  cfp_link: https://cfp.kaigionrails.org/events/2024
  announced_on: 2024-02-24

- name: RubyConf 2024
  location: Chicago, IL
  start_date: 2024-11-13
  end_date: 2024-11-15
  url: https://rubyconf.org
  twitter: rubyconf
  mastodon: https://ruby.social/@rubyconf
  cfp_open_date: 2024-06-06
  cfp_close_date: 2024-07-22
  cfp_link: https://sessionize.com/rubyconf-2024/
  announced_on: 2024-01-21

- name: RubyConf India 2024
  location: Jaipur, India
  start_date: 2024-11-29
  end_date: 2024-11-30
  url: https://rubyconf.in
  twitter: rubyconfindia
  cfp_open_date: 2024-07-23
  cfp_close_date: 2024-09-25
  cfp_link: https://www.papercall.io/rubyconf-india-2024
  announced_on: 2024-07-23

- name: RubyConf China 2024
  location: Guangzhou, China
  start_date: 2024-11-30
  end_date: 2024-12-01
  url: https://www.rubyconfchina.org
  announced_on: 2024-07-17

- name: RubyWorld Conference 2024
  location: Matsue, Japan
  start_date: 2024-12-05
  end_date: 2024-12-06
  url: https://2024.rubyworld-conf.org/en/
  twitter: rubyworldconf
  announced_on: 2024-05-29

- name: Ruby Banitsa Conf 2024
  location: Sofia, Bulgaria
  start_date: 2024-12-07
  end_date: 2024-12-07
  url: https://conf.rubybanitsa.com
  twitter: rubybanitsa
  announced_on: 2024-10-10

- name: Tokyo RubyKaigi 12
  location: Tokyo, Japan
  start_date: 2025-01-18
  end_date: 2025-01-18
  url: https://regional.rubykaigi.org/tokyo12/
  twitter: tokyork12
  announced_on: 2024-11-17

- name: Ruby for Good - Ghent 2025
  location: Ghent, Belgium
  start_date: 2025-02-03
  end_date: 2025-02-05
  url: https://RubyInGhent.org
  twitter: rubyforgood
  announced_on: 2024-12-02

- name: Ruby Community Conference 2025 Winter Edition
  location: Kraków, Poland
  start_date: 2025-02-28
  end_date: 2025-02-28
  url: https://www.rubycommunityconference.com
  twitter: visualitypl
  announced_on: 2024-11-19

- name: Tropical on Rails 2025
  location: São Paulo, Brazil
  start_date: 2025-04-03
  end_date: 2025-04-04
  url: https://www.tropicalonrails.com/
  twitter: tropicalonrails
  mastodon: https://ruby.social/@tropicalonrails
  announced_on: 2024-08-16
  cfp_link: https://www.papercall.io/tropicalonrails
  cfp_open_date: 2024-11-26
  cfp_close_date: 2025-01-14

- name: Sin City Ruby 2025
  location: Las Vegas, NV
  start_date: 2025-04-10
  end_date: 2025-04-11
  url: https://www.sincityruby.com
  announced_on: 2024-11-14

- name: wroclove.rb 2025
  location: Wrocław, Poland
  start_date: 2025-04-11
  end_date: 2025-04-13
  url: https://wrocloverb.com/
  twitter: wrocloverb
  mastodon: https://ruby.social/@wrocloverb
  announced_on: 2024-12-10
  cfp_open_date: 2025-01-20
  cfp_close_date: 2025-02-13
  cfp_link: https://docs.google.com/forms/d/e/1FAIpQLSdg-w3hF3V-Q7hNwXKzqEUv_y92oQaYWu4FSziFRhwEyMo3Hw/viewform

- name: RubyKaigi 2025
  location: Matsuyama, Ehime, Japan
  start_date: 2025-04-16
  end_date: 2025-04-18
  url: https://rubykaigi.org/2025
  twitter: rubykaigi
  mastodon: https://ruby.social/@rubykaigi
  announced_on: 2024-05-18
  # Original CFP:
  # cfp_open_date: 2024-12-14
  # cfp_close_date: 2025-01-19
  # cfp_link: https://cfp.rubykaigi.org/events/2025

  # Lightning Talk CFP:
  cfp_open_date: 2025-03-07
  cfp_close_date: 2025-03-30
  cfp_link: https://cfp.rubykaigi.org/events/2025LT

- name: Balkan Ruby 2025
  location: Sofia, Bulgaria
  start_date: 2025-04-25
  end_date: 2025-04-26
  url: https://balkanruby.com
  twitter: balkanruby
  announced_on: 2024-04-28
  cfp_link: https://forms.gle/Wzp4QvDzAiWVrB7d9
  cfp_open_date: 2024-11-19
  cfp_close_date: 2025-02-05

- name: Ruby Retreat 2025
  location: Whangaparāoa, Auckland, New Zealand
  start_date: 2025-05-09
  end_date: 2025-05-12
  url: https://retreat.ruby.nz
  twitter: RubyNewZealand
  announced_on: 2024-10-19

- name: Helvetic Ruby 2025
  location: Geneva, Switzerland
  start_date: 2025-05-22
  end_date: 2025-05-23
  url: https://helvetic-ruby.ch
  twitter: helvetic_ruby
  mastodon: https://ruby.social/@helvetic_ruby
  cfp_open_date: 2024-12-09
  cfp_close_date: 2025-01-29
  cfp_link: https://helvetic-ruby.ch/call-for-speakers
  announced_on: 2024-05-17

- name: Baltic Ruby 2025
  location: Riga, Latvia
  start_date: 2025-06-12
  end_date: 2025-06-14
  url: https://balticruby.org
  twitter: balticruby
  mastodon: https://ruby.social/@balticruby
  announced_on: 2024-06-15
  cfp_link: https://papercall.io/balticruby25
  cfp_open_date: 2024-11-25
  cfp_close_date: 2025-02-01

- name: Brighton Ruby 2025
  location: Brighton, UK
  start_date: 2025-06-19
  end_date: 2025-06-19
  url: https://brightonruby.com
  twitter: brightonruby
  mastodon: https://ruby.social/@brightonruby
  announced_on: 2024-06-19
  cfp_link: https://forms.reform.app/goodscary/lightning-talks-at-brighton-ruby-2025-cfp/gci0d6
  cfp_open_date: 2025-03-10
  cfp_close_date: 2025-03-31

- name: KansaiRubyKaigi08
  location: Kyoto, Japan
  start_date: 2025-06-28
  end_date: 2025-06-28
  url: https://regional.rubykaigi.org/kansai08/
  announced_on: 2025-01-15
  cfp_open_date: 2025-02-06
  cfp_close_date: 2025-05-07
  cfp_link: https://forms.gle/TrTJs5c7iJf6LwKD6

- name: RailsConf 2025
  location: Philadelphia, PA
  start_date: 2025-07-08
  end_date: 2025-07-10
  url: https://www.railsconf.org
  twitter: railsconf
  mastodon: https://ruby.social/@railsconf
  announced_on: 2024-12-20
  cfp_open_date: 2025-01-31
  cfp_close_date: 2025-02-28
  cfp_link: https://sessionize.com/railsconf-2025

- name: RubyConf Africa 2025
  location: Nairobi, Kenya
  start_date: 2025-07-18
  end_date: 2025-07-19
  url: https://rubyconf.africa/
  twitter: ruby_african
  cfp_open_date: 2025-01-31
  cfp_close_date: 2025-04-30
  cfp_link: https://www.papercall.io/rubyconfafrica2025
  announced_on: 2025-01-15

- name: PicoRuby Overflow Kaigi 2025
  location: Osaka, Japan
  start_date: 2025-07-19
  end_date: 2025-07-19
  url: https://naniwarb.github.io/picorubyoverflowkaigi/
  announced_on: 2025-05-30
  cfp_open_date: 2025-05-30
  cfp_close_date: 2025-06-15
  cfp_link: https://forms.gle/1sMef6XjYAHFiCAU8

- name: RubyConf Taiwan x COSCUP 2025
  location: Taipei, Taiwan
  start_date: 2025-08-09
  end_date: 2025-08-10
  url: https://2025.rubyconf.tw
  twitter: rubyconftw
  announced_on: 2025-04-15
  cfp_open_date: 2025-04-19
  cfp_close_date: 2025-05-10
  cfp_link: https://pretalx.coscup.org/coscup-2025/cfp

- name: Rails Camp West 2025
  location: Kenai Lake, Alaska, USA
  start_date: 2025-08-18
  end_date: 2025-08-21
  url: https://west.railscamp.us/2025
  twitter: railscamp_usa
  announced_on: 2024-12-02

- name: Rails at Scale Summit 2025
  location: Amsterdam, Netherlands
  start_date: 2025-09-03
  end_date: 2025-09-03
  url: https://rubyonrails.org/world/2025/rails_at_scale
  twitter: rails
  announced_on: 2025-05-06

- name: Rails World 2025
  location: Amsterdam, Netherlands
  start_date: 2025-09-04
  end_date: 2025-09-05
  url: https://rubyonrails.org/world/
  twitter: rails
  announced_on: 2024-11-27
  cfp_open_date: 2025-03-07
  cfp_close_date: 2025-04-10
  cfp_link: https://sessionize.com/rails-world-2025/

- name: XO Ruby Chicago 2025
  location: Chicago, IL
  start_date: 2025-09-06
  end_date: 2025-09-06
  announced_on: 2025-07-29
  url: https://xoruby.com/event/chicago/
  cfp_open_date: 2025-07-29
  cfp_close_date: 2025-08-13
  cfp_link: https://www.xoruby.com/speak/

- name: Friendly.rb 2025
  location: Bucharest, Romania
  start_date: 2025-09-10
  end_date: 2025-09-11
  url: https://friendlyrb.com/
  twitter: friendlyrb
  mastodon: https://ruby.social/@friendlyrb
  announced_on: 2024-11-29
  cfp_open_date: 2025-03-05
  cfp_close_date: 2025-07-01
  cfp_link: https://friendlyrb.com/cfp
  status: Tickets available

- name: RubyConf India 2025
  location: Jaipur, India
  start_date: 2025-09-12
  end_date: 2025-09-13
  url: https://rubyconf.in
  twitter: rubyconfindia
  cfp_open_date: 2025-05-22
  cfp_close_date: 2025-07-15
  cfp_link: https://www.papercall.io/rubyconf-india-2025
  announced_on: 2025-05-22

- name: XO Ruby Atlanta 2025
  location: Atlanta, GA
  start_date: 2025-09-13
  end_date: 2025-09-13
  announced_on: 2025-07-29
  url: https://xoruby.com/event/atlanta/
  cfp_open_date: 2025-07-29
  cfp_close_date: 2025-08-20
  cfp_link: https://www.xoruby.com/speak/

- name: EuRuKo 2025
  location: Viana do Castelo, Portugal
  start_date: 2025-09-18
  end_date: 2025-09-19
  url: https://2025.euruko.org
  twitter: euruko
  mastodon: https://ruby.social/@euruko
  announced_on: 2024-11-29
  cfp_open_date: 2025-03-14
  cfp_close_date: 2025-04-10
  cfp_link: https://papercall.io/euruko-2025

- name: XO Ruby New Orleans 2025
  location: New Orleans, LA
  start_date: 2025-09-20
  end_date: 2025-09-20
  announced_on: 2025-07-29
  url: https://xoruby.com/event/new-orleans/
  cfp_open_date: 2025-07-29
  cfp_close_date: 2025-08-27
  cfp_link: https://www.xoruby.com/speak/

- name: Kaigi on Rails 2025
  location: Tokyo, Japan
  start_date: 2025-09-26
  end_date: 2025-09-27
  url: https://kaigionrails.org/2025/
  twitter: kaigionrails
  mastodon: https://ruby.social/@kaigionrails
  announced_on: 2024-10-26
  cfp_open_date: 2025-06-01
  cfp_close_date: 2025-06-30
  cfp_link: https://kaigionrails.org/2025/cfp/

- name: Rocky Mountain Ruby 2025
  location: Boulder, CO
  start_date: 2025-10-06
  end_date: 2025-10-07
  url: https://rockymtnruby.dev
  twitter: rmrubyconf
  mastodon: https://ruby.social/@rockymtnruby
  announced_on: 2024-10-08
  cfp_open_date: 2025-05-30
  cfp_close_date: 2025-06-30
  cfp_link: https://sessionize.com/rocky-mountain-ruby-2025

- name: XO Ruby Portland 2025
  location: Portland, OR
  start_date: 2025-10-11
  end_date: 2025-10-11
  announced_on: 2025-08-23
  url: https://xoruby.com/event/portland/

- name: XO Ruby San Diego 2025
  location: San Diego, CA
  start_date: 2025-10-18
  end_date: 2025-10-18
  announced_on: 2025-08-23
  url: https://xoruby.com/event/san-diego/

- name: XO Ruby Austin 2025
  location: Austin, TX
  start_date: 2025-10-25
  end_date: 2025-10-25
  announced_on: 2025-08-23
  url: https://xoruby.com/event/austin/

- name: RubyWorld Conference 2025
  location: Matsue, Japan
  start_date: 2025-11-06
  end_date: 2025-11-07
  url: https://2025.rubyworld-conf.org/en/
  twitter: rubyworldconf
  announced_on: 2025-01-10
  cfp_open_date: 2025-06-23
  cfp_close_date: 2025-08-01
  cfp_link: "https://2025.rubyworld-conf.org/en/news/2025/06/call-for-proposals/"

- name: San Francisco Ruby Conference 2025
  location: San Francisco, CA
  start_date: 2025-11-19
  end_date: 2025-11-20
  announced_on: 2025-05-29
  url: https://sfruby.com
  cfp_open_date: 2025-06-04
  cfp_close_date: 2025-07-13
  cfp_link: https://cfp.sfruby.com

- name: "tiny ruby #{conf}"
  location: Helsinki, Finland
  start_date: 2025-11-21
  end_date: 2025-11-21
  url: https://helsinkiruby.fi/tinyruby/
  mastodon: https://ruby.social/@helsinkiruby
  announced_on: 2025-04-25
  cfp_open_date: 2025-05-27
  cfp_close_date: 2025-07-31
  cfp_link: https://www.papercall.io/tinyruby
  reg_phrase: Tickets available

- name: RubyConf TH 2026
  location: Bangkok, Thailand
  start_date: 2026-01-31
  end_date: 2026-02-01
  url: https://rubyconfth.com
  twitter: rubyconfth
  announced_on: 2025-02-28
  cfp_open_date: 2025-05-26
  cfp_close_date: 2025-06-30
  cfp_link: https://www.papercall.io/rubyconfth2026

- name: Ruby for Good - Belgium 2026
  location: Ghent, Belgium
  start_date: 2026-02-02
  end_date: 2026-02-04
  url: https://rubyinghent.org
  announced_on: 2025-10-01

- name: RBQ Conf 2026
  location: Austin, TX
  start_date: 2026-03-31
  end_date: 2026-03-31
  date_precision: month
  url: https://rbqconf.com
  announced_on: 2025-07-17

- name: Tropical on Rails 2026
  location: São Paulo, Brazil
  start_date: 2026-04-09
  end_date: 2026-04-10
  url: https://www.tropicalonrails.com/
  twitter: tropicalonrails
  mastodon: https://ruby.social/@tropicalonrails
  announced_on: 2025-04-30
  cfp_link: https://cfp.tropicalonrails.com
  cfp_open_date: 2025-12-05
  cfp_close_date: 2026-01-10

- name: wroclove.rb 2026
  location: Wrocław, Poland
  start_date: 2026-04-17
  end_date: 2026-04-19
  url: https://wrocloverb.com/
  twitter: wrocloverb
  mastodon: https://ruby.social/@wrocloverb
  announced_on: 2025-09-26
  cfp_open_date: 2025-10-13
  cfp_close_date: 2026-01-13
  cfp_link: https://www.papercall.io/wrocloverb2026

- name: RubyKaigi 2026
  location: Hakodate, Hokkaido, Japan
  start_date: 2026-04-22
  end_date: 2026-04-24
  url: https://rubykaigi.org
  twitter: rubykaigi
  mastodon: https://ruby.social/@rubykaigi
  announced_on: 2025-04-18

- name: Blue Ridge Ruby 2026
  location: Asheville, NC
  start_date: 2026-04-30
  end_date: 2026-05-01
  url: https://blueridgeruby.com
  twitter: blueridgeruby
  mastodon: https://ruby.social/@blueridgeruby
  announced_on: 2025-12-12

- name: Rubycon 2026
  location: Rimini, Italy
  start_date: 2026-05-08
  end_date: 2026-05-08
  announced_on: 2025-08-11
  url: https://rubycon.it
  cfp_link: https://rubycon.it/cfp
  cfp_open_date: 2025-08-11
  # cfp_close_date: TODO
  twitter: rubyconitaly
  mastodon: https://mastodon.social/@rubycon

- name: Balkan Ruby 2026
  location: Sofia, Bulgaria
  start_date: 2026-05-15
  end_date: 2026-05-16
  url: https://balkanruby.com
  twitter: balkanruby
  announced_on: 2025-04-27

- name: RubyConf Austria 2026
  location: Vienna, Austria
  start_date: 2026-05-30
  end_date: 2026-05-30
  url: https://rubyconf.at
  announced_on: 2025-03-12
  cfp_open_date: "2025-07-13"
  cfp_close_date: "2025-12-01"
  cfp_link: "https://www.papercall.io/rubyconfaustria2026"

- name: Blastoff Rails 2026
  location: Albuquerque, NM
  start_date: 2026-06-11
  end_date: 2026-06-12
  url: https://blastoffrails.com
  twitter: blastoffrails
  announced_on: 2025-07-09
  cfp_open_date: 2025-09-15
  cfp_close_date: 2026-01-10
  cfp_link: https://www.papercall.io/blastoff

- name: Baltic Ruby 2026
  location: Hamburg, Germany
  start_date: 2026-06-12
  end_date: 2026-06-13
  url: https://balticruby.org
  twitter: balticruby
  mastodon: https://ruby.social/@balticruby
  announced_on: 2025-09-02
  cfp_open_date: 2025-09-04
  cfp_close_date: 2025-12-31
  cfp_link: "https://www.papercall.io/balticruby2026"

- name: RubyConf Africa 2026
  location: Nairobi, Kenya
  start_date: 2026-08-21
  end_date: 2026-08-22
  url: https://rubyconf.africa/
  twitter: ruby_african
  announced_on: 2025-11-06
  cfp_open_date: 2025-11-20
  cfp_close_date: 2026-03-11
  cfp_link: https://www.papercall.io/ruby-conf-africa-2026

- name: Rails Camp West 2026
  location: Otis, OR
  start_date: 2026-09-07
  end_date: 2026-09-11
  url: https://west.railscamp.us/2026
  twitter: railscamp_usa
  announced_on: 2025-11-13

- name: Rails World 2026
  location: Austin, TX
  start_date: 2026-09-22
  end_date: 2026-09-25
  url: https://rubyonrails.org/world/
  twitter: rails
  announced_on: 2025-09-05
  # cfp_open_date: 2025-03-07
  # cfp_close_date: 2025-04-10
  # cfp_link: https://sessionize.com/rails-world-2025/

- name: Helvetic Ruby 2026
  location: Zürich, Switzerland
  start_date: 2026-11-19
  end_date: 2026-11-20
  announced_on: 2025-08-22
  url: https://helvetic-ruby.ch
  mastodon: https://ruby.social/@helvetic_ruby

- name: RubyConf 2026
  location: United States # TODO: update once location is confirmed
  start_date: 2026-12-31 # TODO: update once dates are confirmed
  end_date: 2026-12-31 # TODO: update once dates are confirmed
  announced_on: 2024-05-07
  url: https://rubycentral.org/news/announcing-railsconf-2025-and-a-new-chapter-for-ruby-central-events
  twitter: rubyconf
  date_precision: year
  mastodon: https://ruby.social/@rubyconf


================================================
FILE: _data/meetup_groups.yml
================================================
---

- id: aarhusrb
  name: aarhus.rb
  service: meetupdotcom

- id: adelaiderb
  name: Ruby and Rails Adelaide
  service: meetupdotcom

- id: african_ruby_community
  name: African Ruby Community
  service: meetupdotcom
  remove:
    - "ARC"
    - "(Zoom)"

- id: aloharb
  name: aloha.rb
  service: meetupdotcom

- id: amsterdam-rb
  name: Amsterdam.rb
  service: meetupdotcom

- id: andalucia-rb
  name: Andalucia.rb
  service: ical
  timezone: Europe/Madrid
  ical_url: https://andalucia.onruby.eu/events.ics

- id: tallinn-ruby-usergroup
  name: Tallinn Ruby Usergroup
  service: ical
  timezone: Europe/Tallinn
  ical_url: https://tallinn.ruby.ee/events.ics

- id: arlington-ruby
  name: Arlington Ruby
  service: meetupdotcom

- id: arquitetura-e-design-de-aplicacoes-ruby
  name: ada.rb
  service: meetupdotcom

- id: athens-ruby-meetup
  name: Athens Ruby
  service: meetupdotcom

- id: atlantaruby
  name: Atlanta Ruby
  service: meetupdotcom
  remove:
    - "[VIRTUAL] "
    - "[ATLRUG Virtual]"
    - "[ATLRUG]"
    - "The Atlanta Ruby Meetup Group"

- id: aucklandruby
  name: Auckland Ruby
  service: meetupdotcom

# NOTE: same events as austinrb
# - id: austin-on-rails
#   name: Austin on Rails
#   service: meetupdotcom

- id: austin-ruby-programming-study-group
  name: Austin Ruby Programming Study Group
  service: meetupdotcom

- id: austinrb
  name: Austin.rb
  service: meetupdotcom

- id: bangalore-ruby-users-group
  name: Bangalore Ruby Users Group
  service: meetupdotcom

- id: bengaluru-ruby-users-group
  name: Bengaluru Ruby Users Group
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-Iz1bCGzWjb6G2HI
  timezone: Asia/Kolkata

- id: bangkok-rb
  name: Bangkok.rb
  service: meetupdotcom

- id: barcelona-on-rails
  name: Barcelona on Rails
  service: meetupdotcom

- id: barcelona-rb
  name: Barcelona.rb
  service: meetupdotcom

- id: bathruby
  name: Bath Ruby User Group
  service: meetupdotcom

- id: belfastruby
  name: BelfastRuby
  service: meetupdotcom

- id: belfastruby
  name: Belfast Ruby
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-6rPmMIYodqbr6WA
  timezone: Europe/London

- id: bmore-on-rails
  name: B'more on Rails
  service: meetupdotcom

- id: bogota-ruby-meetup
  name: Ruby Bogotá
  service: meetupdotcom

# - id: bostonrb
#   name: Boston Ruby Group
#   service: meetupdotcom

- id: bostonrb
  name: Boston Ruby Group
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-O0xLKEqq4Q8vc8f
  timezone: America/New_York
  remove:
    - BostonRB

# - id: boulder-denver-railsbridge
#   name:
#   service: meetupdotcom

- id: boulder-ruby
  name: Boulder Ruby
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-B9LZxdgJiXBxezw
  timezone: America/Denver

# - id: boulder_ruby_group
#   name: Boulder Ruby Group
#   service: meetupdotcom

- id: brighton-ruby-group
  name: Brighton Ruby Group
  service: meetupdotcom

- id: brisruby
  name: Brisbane Ruby
  service: meetupdotcom

- id: brooklyn-rb
  name: brooklyn.rb
  service: meetupdotcom

# - id: btownrb
#   name:
#   service: meetupdotcom

- id: budapest-rb
  name: budapest.rb
  service: meetupdotcom

- id: cali-ruby-meetup
  name: Cali Ruby
  service: meetupdotcom

# - id: cambridge-ruby-user-group
#   name:
#   service: meetupdotcom

- id: charlotte-rb
  name: Charlotte Ruby
  service: meetupdotcom

- id: chicagoruby
  name: ChicagoRuby
  service: meetupdotcom
  exclude:
    - RubyConf

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

- id: clevelandruby
  name: Cleveland Ruby Brigade
  service: meetupdotcom

- id: cologne-rb
  name: Cologne.rb
  service: meetupdotcom
  remove:
    - "Ruby Usergroup: "

- id: columbus-ruby-on-rails-mind-meld
  name: Columbus Ruby
  service: meetupdotcom

- id: columbusrb
  name: Columbus Ruby Brigade
  service: meetupdotcom

- id: copenhagen-ruby-brigade
  name: Copenhagen Ruby Brigade
  service: meetupdotcom

# - id: dallasrb
#   name: Dallas Ruby Brigade
#   service: meetupdotcom

- id: dcruby
  name: DC Ruby Users Group
  service: meetupdotcom

- id: denhaagrb
  name: DenHaag.rb
  service: meetupdotcom

- id: denver-rb
  name: Denver.rb
  service: meetupdotcom

# - id: derailed
#   name:
#   service: meetupdotcom

- id: drugpl
  name: Dolnośląska Grupa Użytkowników Ruby
  service: meetupdotcom

# - id: dubai-ruby-on-rails-meetup
#   name:
#   service: meetupdotcom

- id: dusseldorf-ruby-elixir-meetup
  name: Düsseldorf Ruby
  service: meetupdotcom
  filter: Ruby

# - id: flexport-amsterdam-meetup-group
#   name:
#   service: meetupdotcom

- id: frankfurt-ruby-meetup
  name: Frankfurt Ruby Meetup
  service: meetupdotcom

- id: geneva-rb
  name: Geneva.rb
  service: meetupdotcom

- id: got-rb
  name: Got.rb
  service: meetupdotcom

- id: groningen-rb
  name: Groningen.rb
  service: meetupdotcom

# - id: group-kazan-rb
#   name:
#   service: meetupdotcom

# - id: houston-ruby-meetup-group
#   name: Houston Rails
#   service: meetupdotcom

- id: houstonruby
  name: Houston Ruby
  service: meetupdotcom

# - id: icruby
#   name: Iowa City Ruby
#   service: meetupdotcom

# - id: id-ruby
#   name: Indonesia Ruby
#   service: meetupdotcom

- id: indyrb
  name: Indianapolis Ruby Brigade
  service: meetupdotcom
  remove:
    - "The Indianapolis Ruby Brigade"
    - "Indy.rb"

- id: israel-rb
  name: israel.rb
  service: meetupdotcom

- id: istanbul-ruby-on-rails
  name: Istanbul Ruby on Rails
  service: meetupdotcom

- id: jaipur-rb-ruby-users-group
  name: Jaipur.rb
  service: meetupdotcom

- id: karlsruhe-rb
  name: Karlsruhe.rb
  service: meetupdotcom

# - id: kcruby
#   name: Kansas City Ruby
#   service: meetupdotcom

- id: kcruby
  name: Kansas City Ruby
  service: luma
  ical_url: https://api2.luma.com/ics/get?entity=calendar&id=cal-hlguC5XZPDfQzqv
  timezone: America/Chicago

# - id: kharkiv-rb
#   name:
#   service: meetupdotcom

- id: krakow-ruby-users-group
  name: Krakow Ruby Users Group (KRUG)
  service: meetupdotcom

- id: krakow-ruby-users-group
  name: Krakow Ruby Users Group (KRUG)
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-EyyObsvyunM3PQP
  timezone: Europe/Warsaw

- id: krugtvm
  name: Kerala Ruby User Group
  service: meetupdotcom

- id: kw-ruby-on-rails
  name: KW Ruby
  service: meetupdotcom

# - id: lambda-ruby
#   name:
#   service: meetupdotcom

- id: laruby
  name: LA Ruby
  service: meetupdotcom

# - id: las-palmas-ruby-on-rails
#   name:
#   service: meetupdotcom

# - id: las-vegas-ruby-on-rails
#   name: Las Vegas Ruby User Group
#   service: meetupdotcom

- id: lausannerb
  name: Lausanne.rb
  service: meetupdotcom

- id: learn-ruby-in-dc
  name: Learn Ruby in DC!
  service: meetupdotcom

# - id: leiden-rb
#   name:
#   service: meetupdotcom

# - id: lodzrug
#   name:
#   service: meetupdotcom

- id: london-learn-ruby
  name: London Learn Ruby
  service: meetupdotcom

- id: london-ruby-user-group
  name: London Ruby User Group
  service: ical
  ical_url: https://lrug.org/meetings.ics
  timezone: Europe/London

- id: lyonrb
  name: Lyon.rb
  service: meetupdotcom

- id: madison-ruby
  name: Madison+ Ruby
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-LlD9HPh8QnHgqEQ
  timezone: America/Chicago

- id: madrid-rb
  name: Madrid.rb
  service: ical
  timezone: Europe/Madrid
  default_location: Madrid, Spain
  ical_url: https://www.madridrb.com/events.ics

- id: medellin-rb
  name: Medellín.rb
  service: meetupdotcom
#
# - id: meetup-group-etmwxpsm
#   name: Brno Ruby Stories
#   service: meetupdotcom

- id: scotrug
  name: Scottish Ruby User Group
  service: meetupdotcom

# - id: memocom-ruby-meetup
#   name: Memocom Ruby
#   service: meetupdotcom

- id: mexico-on-rails
  name: México on Rails
  service: meetupdotcom

- id: miamirb
  name: Miami Ruby Brigade
  service: meetupdotcom

- id: modena-rb
  name: Modena.rb
  service: meetupdotcom

- id: monterrey-ruby-meetup
  name: Monterrey Ruby Meetup
  service: meetupdotcom

- id: montrealrb
  name: Montreal.rb
  service: meetupdotcom

- id: mumbairb
  name: Mumbai.rb
  service: meetupdotcom

- id: munich-rubyshift-ruby-user-group
  name: Munich Ruby User Group
  service: meetupdotcom

- id: nantes-rb
  name: Nantes.rb
  service: meetupdotcom

# - id: napoli-ruby-on-rails-meetup-group
#   name: Napoli Ruby on Rails
#   service: meetupdotcom

- id: nashrb
  name: Nash.rb
  service: meetupdotcom

- id: nepal-ruby-users-group
  name: Ruby Nepal
  service: meetupdotcom

# - id: newcastleruby
#   name: Newcastle Ruby
#   service: meetupdotcom

- id: nwrug
  name: North West Ruby User Group
  service: ical
  ical_url: https://nwrug.org/events.ics
  timezone: Europe/London
  default_location: Manchester, UK
  remove:
    - "NWRUG: "

- id: nyc-on-rails
  name: NYC on Rails
  service: meetupdotcom

- id: nyc-rb
  name: NYC.rb
  exclude: Rails Camp
  service: meetupdotcom
  exclude:
    - "Free Passes to DeveloperWeek 2025"

- id: nyc-ruby-women
  name: NYC Ruby Women
  service: meetupdotcom

- id: ocruby
  name: Orange County Ruby
  service: meetupdotcom
  exclude: Rails Camp
  remove:
    - "(OCRuby)"
    - "Orange County Ruby Users Group"

- id: odense-rb
  name: odense.rb
  service: meetupdotcom

- id: omaha-ruby-meetup
  name: Omaha Ruby
  service: meetupdotcom

- id: orlando-ruby-elixir
  name: Orlando Ruby
  service: meetupdotcom
  filter: Ruby

# - id: ottawaruby
#   name: Ottawa Ruby
#   service: meetupdotcom

# - id: palmetto-ruby-meetup
#   name: Palmetto Ruby
#   service: meetupdotcom

- id: paris-ruby-workshop
  name: Paris Ruby Workshop
  service: meetupdotcom
  exclude:
    - "(en ligne)"

- id: paris_rb
  name: Paris.rb
  service: meetupdotcom
  remove: "ParisRb.new(:monthly, on: :first_tuesday)"

- id: parisrb
  name: ParisRB.old
  service: meetupdotcom

- id: phillyrb
  name: Philly.rb
  service: meetupdotcom
  remove: " - Global/Virtual"

- id: polishrubyusergroup
  name: Polish Ruby User Group
  service: meetupdotcom
  timezone: Europe/Warsaw
  exclude:
    - Ruby Community Conference
    - Baltic Ruby
  remove:
    - (PLRUG)

- id: portland-ruby-brigade
  name: Portland Ruby Brigade
  service: meetupdotcom

- id: prug
  name: Poznań Ruby User Group
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-Y0YsxgnzWReQXMG
  timezone: Europe/Warsaw
  remove:
    - PoznańRubyUserGroup

- id: prague-ruby-meetup
  name: Prague Ruby
  service: meetupdotcom

- id: praguerb
  name: Prague.rb
  service: meetupdotcom

- id: pune-ruby-on-rails-meetup
  name: Pune Ruby on Rails
  service: meetupdotcom

- id: punerubymeetup
  name: Pune Ruby Users Group
  service: meetupdotcom

- id: punerubymeetup
  name: Pune Ruby Meetup
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-KTu2DlicAMuYZT1
  timezone: Asia/Kolkata

# - id: quillarb
#   name:
#   service: meetupdotcom

# - id: rails-east
#   name: 'Ruby On Rails: East Coast'
#   service: meetupdotcom

- id: rails-girls-bielsko-biala
  name: Rails Girls Bielsko-Biala
  service: meetupdotcom

- id: rails-girls-buenos-aires
  name: Rails Girls Buenos Aires
  service: meetupdotcom

- id: rails-girls-copenhagen
  name: Rails Girls Copenhagen
  service: meetupdotcom

# - id: rails-girls-geneva
#   name: Rails Girls Geneva
#   service: meetupdotcom

- id: rails-grills
  name: Rails Grills!
  service: meetupdotcom

- id: rails-jobs
  name: Hire Ruby Engineers
  service: meetupdotcom

# - id: rails-mn
#   name:
#   service: meetupdotcom

# - id: rails-programming-in-thailand
#   name: BKK Rails
#   service: meetupdotcom

- id: rails-taiwan
  name: Rails Taiwan
  service: meetupdotcom

# - id: railsbridgechi
#   name: RailsBridge Chicago
#   service: meetupdotcom

# - id: railsgirlsto
#   name: railsgirlsto
#   service: meetupdotcom

- id: raleighrb
  name: Triangle.rb
  service: meetupdotcom

- id: rhode-island-ruby-group
  name: Rhode Island Ruby Group
  service: meetupdotcom

- id: robalos-rb
  name: Robalos.rb
  service: meetupdotcom

- id: ror-bbsr
  name: Ruby on Rails Bhubaneswar
  service: meetupdotcom

# - id: rorcommunity
#   name: Ruby on Rails Community
#   service: meetupdotcom

- id: rorlab
  name: RORLAB
  service: meetupdotcom

- id: rotterdam-rb
  name: Rotterdam.rb
  service: meetupdotcom

- id: ruby-a-la-cluj
  name: Ruby a la Cluj
  service: meetupdotcom

- id: ruby-az
  name: Ruby::AZ
  service: meetupdotcom

# - id: ruby-geneve-rb
#   name:
#   service: meetupdotcom

- id: ruby_fusion
  name: Ruby Fusion
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-HxTn4dLUlMlzEQX
  timezone: America/Denver

- id: ruby-in-london
  name: Ruby in London
  service: meetupdotcom

# - id: ruby-joinville
#   name: Ruby Joinville
#   service: meetupdotcom

- id: ruby-lightning-to
  name: Ruby Lightning Talks T.O.
  service: meetupdotcom

- id: ruby-loco
  name: Ruby LoCo
  service: meetupdotcom

- id: ruby-lviv
  name: Lviv Ruby User Group
  service: meetupdotcom

- id: ruby-lx
  name: Ruby on Rails Lisbon
  service: meetupdotcom

- id: ruby-malaysia
  name: Ruby Malaysia
  service: meetupdotcom
  remove:
    - "We're Moving to Substack!"

- id: ruby-meetup-oslo
  name: Ruby Meetup Oslo
  service: meetupdotcom

- id: ruby-microservices
  name: Ruby Microservices
  service: meetupdotcom

- id: ruby-mn
  name: ruby.mn
  service: meetupdotcom

# - id: ruby-modularity-group
#   name: Ruby/Rails Modularity
#   service: meetupdotcom

- id: ruby-montevideo
  name: Ruby Montevideo
  service: meetupdotcom

- id: ruby-natal
  name: Ruby Natal
  service: meetupdotcom

- id: ruby-novi-sad
  name: Ruby Novi Sad
  service: meetupdotcom

# - id: ruby-nuby-info
#   name: Ruby Nuby™
#   service: meetupdotcom

- id: ruby-on-rails-bangalore
  name: Ruby on Rails Bangalore
  service: meetupdotcom

- id: ruby-on-rails-bh
  name: Ruby On Rails Belo Horizonte
  service: meetupdotcom

# - id: ruby-on-rails-latvia
#   name: Ruby on Rails Latvia
#   service: meetupdotcom

- id: latviarb
  name: Latvian Ruby Community
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-2SEAz7RmwiOGpnu
  timezone: Europe/Riga

# - id: ruby-on-rails-meetup
#   name: Ruby on Rails Meetup
#   service: meetupdotcom

- id: ruby-on-rails-oceania-melbourne
  name: Melbourne Ruby
  service: meetupdotcom
  remove:
    - "Melbourne Ruby"

- id: ruby-on-rails-oceania-perth
  name: Ruby and Rails Perth
  service: meetupdotcom

- id: ruby-on-rails-oceania-sydney
  name: Ruby on Rails Oceania Sydney
  service: meetupdotcom

- id: ruby-phil
  name: Philippine Ruby Users Group
  service: meetupdotcom

# - id: ruby-project-night-nyc
#   name: Ruby Project Night NYC
#   service: meetupdotcom

# - id: ruby-romania
#   name: Ruby Romania
#   service: meetupdotcom

- id: ruby-serbia
  name: Ruby Serbia
  service: meetupdotcom

- id: ruby-spain
  name: Ruby Spain
  service: meetupdotcom

- id: ruby-turkiye
  name: Ruby Türkiye
  service: meetupdotcom

- id: ruby-user-group-linz-rugl
  name: Ruby User Group Linz
  service: meetupdotcom

- id: ruby-user-group-berlin
  name: Ruby User Group Berlin
  service: ical
  timezone: Europe/Berlin
  default_location: Berlin, Germany
  ical_url: https://www.rug-b.de/events.ics
  remove:
    - "(watch the date)"
    - "Check the date!"
    - "CANCELED"

- id: ruby-usergroup-hamburg
  name: Ruby Usergroup Hamburg
  service: ical
  timezone: Europe/Berlin
  default_location: Hamburg, Germany
  ical_url: https://hamburg.onruby.de/events.ics

# - id: ruby-user-group-cologne
#   name: Ruby User Group Cologne
#   service: ical
#   timezone: Europe/Berlin
#   default_location: Cologne, Germany
#   ical_url: https://www.colognerb.de/events.ics
#   remove: "Kölsch.rb"

- id: ruby-user-group-leipzig
  name: Ruby User Group Leipzig
  service: ical
  timezone: Europe/Berlin
  default_location: Leipzig, Germany
  ical_url: https://leipzig.onruby.de/events.ics

- id: ruby-user-group-dresden
  name: Dresden.rb
  service: ical
  timezone: Europe/Berlin
  default_location: Dresden, Germany
  ical_url: https://dresdenrb.onruby.de/events.ics

# - id: ruby-user-group-saarland
#   name:
#   service: meetupdotcom

- id: rubyba
  name: Ruby Buenos Aires
  service: meetupdotcom

- id: rubybelgium
  name: Ruby Belgium
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-xxSFE7F64frGUhe
  timezone: Europe/Brussels

- id: rubybrigade
  name: Helsinki Ruby Brigade
  service: meetupdotcom

# - id: rubydesign
#   name: Ruby on Rails Enthusiasts
#   service: meetupdotcom

- id: rubydf
  name: RubyDF
  service: meetupdotcom

- id: rubydf
  name: Ruby DF
  timezone: America/Sao_Paulo
  ical_url: https://rubydf.com/events.ics
  service: ical

- id: rubyeurope
  name: Ruby Europe
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-e1hbsrfKzZEFCi5
  timezone: Europe/Berlin

- id: rubyfloripa
  name: RubyFloripa
  service: meetupdotcom

- id: rubygdl
  name: RubyGDL
  service: meetupdotcom

- id: rubyireland
  name: Ruby Ireland
  service: meetupdotcom

- id: rubyists-in-albuquerque
  name: Ruby Albuquerque
  service: meetupdotcom

- id: rubyjax
  name: RubyJax
  service: meetupdotcom

# - id: rubymonstas-programming-for-women
#   name: RubyMonstas
#   service: meetupdotcom

# - id: rubynord
#   name:
#   service: meetupdotcom

# - id: rubyon
#   name: RubyOn - Ruby On Rails
#   service: meetupdotcom

- id: rubyonrails-ch
  name: Ruby on Rails Switzerland
  service: meetupdotcom

- id: rubyonrio
  name: RubyOnRio
  service: meetupdotcom

# - id: rubyperu
#   name: Ruby Perú
#   service: meetupdotcom

- id: rubyroars-kharkiv
  name: RubyRoars Kharkiv
  service: meetupdotcom
  filter: Ruby

- id: rubyside-meetup
  name: Rubyside
  service: meetupdotcom

- id: rubyslovenia
  name: Slovenia Ruby User Group
  service: meetupdotcom

- id: rubyzg
  name: Ruby Zagreb
  service: meetupdotcom

- id: rzeszow-ruby-user-group
  name: Rzeszow Ruby User Group
  service: meetupdotcom

- id: sacruby
  name: The Sacramento Ruby Meetup
  service: meetupdotcom

- id: saigonrb # and: saigon-rb
  name: Saigon.rb
  service: meetupdotcom

# - id: san-diego-railsbridge
#   name: San Diego RailsBridge
#   service: meetupdotcom

- id: san-francisco-ruby-meetup-group
  name: SF Bay Area Ruby
  service: meetupdotcom

# - id: santa-barbara-on-rails
#   name: Santa Barbara on Rails
#   service: meetupdotcom

- id: sardinesrb
  name: 'Sardines.rb: Lisbon Ruby Meetup'
  service: meetupdotcom

- id: sarubycoders
  name: SA Ruby Coders
  service: meetupdotcom

- id: sdruby
  name: SD Ruby
  service: meetupdotcom

- id: seattle-rb
  name: Seattle.rb
  service: ical
  timezone: America/Los_Angeles
  ical_url: https://seattlerb.org/events.ics

- id: seoul-ruby-meetup
  name: Seoul Ruby Meetup
  service: meetupdotcom

- id: sevilla-ruby-on-rails-meetup
  name: Sevilla Ruby On Rails
  service: meetupdotcom

- id: sfrails
  name: San Francisco Ruby on Rails
  service: meetupdotcom
  exclude:
    - partner event

- id: sfruby
  name: The San Francisco Ruby
  service: meetupdotcom
  exclude:
    - Tech Leadership Tuesday Tea Time
    - Code and Connect

- id: sfruby
  name: SF Bay Area Ruby
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-L4SDawu65B1grBV
  timezone: America/Los_Angeles
  exclude:
    - The San Francisco Ruby Conference
    - SF Ruby Workshop

- id: silicon-valley-ruby
  name: Silicon Valley Ruby
  service: meetupdotcom

- id: singapore-ruby-group
  name: Singapore Ruby Group
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-LjNde6eShrrzWbX
  timezone: Asia/Singapore

- id: singapore-ruby-group
  name: Singapore Ruby Group
  service: meetupdotcom

# - id: sofloruby-broward
#   name: SoFloRuby Broward
#   service: meetupdotcom

- id: south-west-ruby
  name: South West Ruby
  service: meetupdotcom

- id: srugpl
  name: Silesian Ruby Users Group
  service: meetupdotcom

- id: startups-on-rails
  name: Startups on Rails
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-Nby97Hu3ubMSLDU
  timezone: America/New_York

- id: sthlmrb
  name: Stockholm Ruby
  service: meetupdotcom

- id: sthlmrb
  name: Stockholm Ruby
  service: luma
  ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-endgATTZCF1KdPk
  timezone: Europe/Stockholm

- id: stlruby
  name: STLRuby
  service: meetupdotcom

- id: svgruby
  name: Stavanger Ruby User Group
  service: meetupdotcom

- id: tampa-rb
  name: Tampa Ruby Brigade
  service: meetupdotcom

- id: tech-valley-ruby-brigade
  name: Tech Valley Ruby Brigade
  service: meetupdotcom

- id: the-bluegrass-developers-guild
  name: Bluegrass Ruby
  filter: Bluegrass Ruby
  service: meetupdotcom
  remove:
    - Bluegrass Ruby Users Group

- id: the-seattle-ruby-on-rails-developers-meetup-group
  name: Seattle Ruby on Rails
  service: meetupdotcom

- id: thessrb
  name: Thessaloníki Ruby
  service: meetupdotcom

# - id: thirsty-rb-rdu
#   name:
#   service: meetupdotcom

# - id: timisoara-ruby-on-rails-community
#   name:
#   service: meetupdotcom

# - id: tm-ruby
#   name:
#   service: meetupdotcom

- id: tokyo-rails
  name: Tokyo Rails
  service: meetupdotcom

- id: toronto-ruby-on-rails-group
  name: Toronto Ruby on Rails
  service: meetupdotcom

- id: torontoruby
  name: Toronto Ruby
  service: meetupdotcom

- id: toronto-ruby
  name: Toronto Ruby
  service: ical
  timezone: America/Toronto
  ical_url: https://toronto-ruby.com/events/all.ics

- id: toulouse-ruby-friends
  name: Toulouse.rb
  service: meetupdotcom

- id: trivandrum-ruby
  name: Trivandrum Ruby
  service: meetupdotcom

- id: twenterb
  name: Twente.rb
  service: meetupdotcom

- id: upstate-ruby
  name: Upstate Ruby
  service: meetupdotcom

- id: utah-ruby-users-group
  name: Utah Ruby Users Group
  service: meetupdotcom
  remove: "URUG Meetup:"

# - id: utrecht-rb
#   name: Utrecht.rb
#   service: meetupdotcom

- id: vadodara-ruby-meetup
  name: Vadodara Ruby
  service: meetupdotcom

- id: vadodara-ruby-on-rails-meetup
  name: Vadodara Ruby on Rails
  service: meetupdotcom

- id: vancouver-ruby
  name: VanRuby
  service: meetupdotcom
  exclude:
    - Vancouver Cloud Summit

- id: vienna-rb
  name: vienna.rb
  service: meetupdotcom

# - id: vienna-ruby
#   name:
#   service: meetupdotcom

# - id: vilniusrb
#   name: Vilnius.rb
#   service: meetupdotcom
#   remove:
#     - "Vilnius Ruby Brigade meetup:"

- id: visakhapatnam-ruby-on-rails-meetup
  name: Visakhapatnam Ruby on Rails
  service: meetupdotcom

- id: vlctechhub
  name: Valencia.rb
  service: meetupdotcom
  include: Valencia.rb
  exclude:
    - VLCTechFest

- id: wellingtonruby
  name: WellingtonRuby
  service: meetupdotcom

- id: rubywellington
  name: Ruby Wellington
  service: meetupdotcom

- id: west-midlands-ruby-user-group-wmrug
  name: West Midlands Ruby User Group
  service: meetupdotcom

# - id: westside-rails-study-group
#   name:
#   service: meetupdotcom

- id: williamson-county-ruby-meetup
  name: Williamson County Ruby
  service: meetupdotcom

- id: winnipegrb
  name: Winnipeg Ruby User Group
  service: meetupdotcom

# - id: women-on-rails
#   name: Women On Rails
#   service: meetupdotcom

- id: yorkdevelopers
  name: York Ruby
  service: meetupdotcom
  filter: York Ruby


================================================
FILE: _data/meetups.yml
================================================
---

- name: Seattle.rb - February 2002
  location: Seattle, WA
  date: 2002-02-28
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://seattlerb.org/?event_id=1

- name: 'Krakow Ruby Users Group (KRUG) - KRUG #3 / 2023 powered by Zendesk'
  location: Online
  date: 2023-11-14
  start_time: 18:00:00 CEST
  end_time: 22:00:00 CEST
  url: https://luma.com/krug
  service: luma

- name: Toronto Ruby - Inaugural Edition
  location: Toronto, Canada
  date: 2023-11-23
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://toronto-ruby.com/events/1

- name: Charlotte Ruby - Ruby Hack Night January 2024
  location: Online
  date: 2024-01-02
  start_time: 19:00:00 EST
  end_time: 21:30:00 EST
  url: https://www.meetup.com/charlotte-rb/events/297725393
  service: meetup

- name: London Ruby User Group - January 2024 Meeting
  location: London, UK
  date: 2024-01-08
  start_time: 18:00:00 GMT
  end_time: 20:00:00 GMT
  url: https://lrug.org/meetings/2024/january

- name: Białystok Ruby Users Group (BRUG) - Lightning Talks edition
  location: Białystok, Poland
  date: 2024-01-09
  start_time: 18:00:00 CET
  end_time: 20:00:00 CET
  url: https://www.meetup.com/polishrubyusergroup/events/298300747
  service: meetup

- name: Paris.rb - Meetup January 2024
  location: Paris, France
  date: 2024-01-09
  start_time: 19:15:00 CET
  end_time: 22:15:00 CET
  url: https://www.meetup.com/paris_rb/events/297791256
  service: meetup

- name: Boulder Ruby Group - Monthly Presentation Night
  location: Boulder, CO / Online
  date: 2024-01-10
  start_time: 18:00:00 MST
  end_time: 21:00:00 MST
  url: https://www.meetup.com/boulder_ruby_group/events/297947066
  service: meetup

- name: 'Geneva.rb - Turbo Native: iOS apps with Hotwire Rails (Sean Carroll)'
  location: Geneva, Switzerland
  date: 2024-01-10
  start_time: 19:00:00 CET
  end_time: 20:30:00 CET
  url: https://www.meetup.com/geneva-rb/events/297635660
  service: meetup

- name: 'NYC.rb - Mob Programming: Book Summarizer'
  location: Online
  date: 2024-01-10
  start_time: 17:30:00 EST
  end_time: 19:00:00 EST
  url: https://www.meetup.com/nyc-rb/events/297927582
  service: meetup

- name: Philly.rb - Pubnite January 2024
  location: Online
  date: 2024-01-10
  start_time: 20:30:00 EST
  end_time: 22:00:00 EST
  url: https://www.meetup.com/phillyrb/events/297923423
  service: meetup

- name: Ruby Usergroup Hamburg - January 2024
  location: Hamburg, Germany
  date: 2024-01-10
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-january-2024-770

- name: Ruby User Group Berlin - January Meetup 2024
  location: Berlin, Germany
  date: 2024-01-11
  start_time: 19:00:00 CET
  end_time: 21:00:00 CET
  url: https://www.rug-b.de/events/canceled-january-meetup-2024-watch-the-date-canceled-768
  status: cancelled

- name: ChicagoRuby - Totally Solid Cache and Queue by Daniel Schadd
  location: Chicago, IL
  date: 2024-01-17
  start_time: 18:00:00 CST
  end_time: 20:00:00 CST
  url: https://www.meetup.com/chicagoruby/events/298091952
  service: meetup

- name: 'Toronto Ruby - Rails and the Ruby Garbage Collector: How to Speed Up Your
    Rails App'
  location: Toronto, Canada
  date: 2024-01-24
  start_time: 18:00:00 EST
  end_time: 21:00:00 EST
  url: https://radius.to/groups/toronto-ruby/events/nkn3vrxhklze

- name: Poznań Ruby User Group (PRUG) - January 2024
  location: Poznań, Poland
  date: 2024-01-25
  start_time: 18:00:00 CET
  end_time: 20:00:00 CET
  url: https://www.meetup.com/polishrubyusergroup/events/298459627
  service: meetup

- name: SD Ruby - Meetup January 2024
  location: San Diego, CA
  date: 2024-01-25
  start_time: 18:00:00 PST
  end_time: 20:00:00 PST
  url: https://www.meetup.com/sdruby/events/298656197
  service: meetup

- name: Upstate Ruby - Calm Rails Upgrades
  location: Greenville, SC
  date: 2024-01-25
  start_time: 18:30:00 EST
  end_time: 20:00:00 EST
  url: https://www.meetup.com/upstate-ruby/events/298465949
  service: meetup

- name: Ruby Frankfurt Meetup - January 2024
  location: Frankfurt am Main, Germany
  date: 2024-01-30
  start_time: 18:30:00 CET
  end_time: 20:30:00 CET
  url: https://www.meetup.com/frankfurt-ruby-meetup/events/298436132
  service: meetup

- name: WNB.rb - January 2024 Meetup
  location: Online
  date: 2024-01-30
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups/2024/01/30

- name: Ruby Türkiye - Virtual Meetup January 2024
  location: Online
  date: 2024-01-31
  start_time: 20:30:00 TRT
  end_time: 22:30:00 TRT
  url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-db06675a

- name: Ruby User Group Berlin - February Meetup 2024
  location: Berlin, Germany
  date: 2024-02-01
  start_time: 19:00:00 CET
  end_time: 21:30:00 CET
  url: https://www.rug-b.de/events/february-meetup-2024-769

- name: SD Ruby - Lightning Talks
  location: San Diego, CA
  date: 2024-02-01
  start_time: 19:00:00 PST
  end_time: 20:30:00 PST
  url: https://www.meetup.com/sdruby/events/297372058
  service: meetup

- name: Ruby DF - 2ª Edição - Fevereiro de 2024
  location: Brasilia, Brazil
  date: 2024-02-03
  start_time: 10:00:00 -03
  end_time: 12:00:00 -03
  url: https://rubydf.com/events/segunda-edicao

- name: ChicagoRuby - Jason Swett "How to Write Meaningful Tests"
  location: Chicago, IL
  date: 2024-02-05
  start_time: 18:00:00 CST
  end_time: 19:00:00 CST
  url: https://www.meetup.com/chicagoruby/events/298090120
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night February 2024
  location: Online
  date: 2024-02-06
  start_time: 19:00:00 EST
  end_time: 21:30:00 EST
  url: https://www.meetup.com/charlotte-rb/events/298171391
  service: meetup

- name: Paris.rb - Meetup February 2024
  location: Paris, France
  date: 2024-02-06
  start_time: 19:15:00 CET
  end_time: 22:15:00 CET
  url: https://www.meetup.com/paris_rb/events/297791270
  service: meetup

- name: Geneva.rb - Share Your Favorite Gem, Tip, or Trick!
  location: Geneva, Switzerland
  date: 2024-02-07
  start_time: 19:00:00 CET
  end_time: 20:30:00 CET
  url: https://www.meetup.com/geneva-rb/events/297635673
  service: meetup

- name: Ruby in London with Builder.ai
  location: London, UK
  date: 2024-02-07
  start_time: 17:30:00 GMT
  end_time: 20:00:00 GMT
  url: https://www.meetup.com/ruby-in-london/events/297633001
  service: meetup

- name: London Ruby User Group - February 2024 Meeting
  location: London, UK
  date: 2024-02-12
  start_time: 18:00:00 GMT
  end_time: 20:00:00 GMT
  url: https://lrug.org/meetings/2024/february

- name: 'NYC.rb - Mob Programming: Book Summarizer (continued)'
  location: Online
  date: 2024-02-14
  start_time: 17:30:00 EST
  end_time: 19:00:00 EST
  url: https://www.meetup.com/nyc-rb/events/298024751
  service: meetup

- name: Philly.rb - Pubnite February 2024
  location: Online
  date: 2024-02-14
  start_time: 20:30:00 EST
  end_time: 22:00:00 EST
  url: https://www.meetup.com/phillyrb/events/298024752
  service: meetup

- name: Ruby Usergroup Hamburg - February 2024
  location: Hamburg, Germany
  date: 2024-02-14
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-february-2024-774

- name: brooklyn.rb - rails new happy_hack_hour
  location: Brooklyn, NY
  date: 2024-02-15
  start_time: 17:00:00 EST
  end_time: 20:00:00 EST
  url: https://www.meetup.com/brooklyn-rb/events/299183748
  service: meetup

- name: Poznań Ruby User Group (PRUG) - February 2024
  location: Poznań, Poland
  date: 2024-02-22
  start_time: 18:00:00 CET
  end_time: 20:00:00 CET
  url: https://www.meetup.com/polishrubyusergroup/events/298881192
  service: meetup

- name: WNB.rb - February 2024 Meetup
  location: Online
  date: 2024-02-27
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups/2024/02/27

- name: Polish Ruby User Group (PLRUG) - Meetup February 2024
  location: Warsaw, Poland
  date: 2024-02-29
  start_time: 18:00:00 CET
  end_time: 21:00:00 CET
  url: https://www.meetup.com/polishrubyusergroup/events/299211327
  service: meetup

- name: Ruby Türkiye - Virtual Meetup February 2024
  location: Online
  date: 2024-02-29
  start_time: 20:30:00 TRT
  end_time: 22:30:00 TRT
  url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202402-ea467ba1

- name: Toronto Ruby - All About the Ruby LSP
  location: Toronto, Canada
  date: 2024-02-29
  start_time: 18:00:00 EST
  end_time: 21:00:00 EST
  url: https://radius.to/groups/toronto-ruby/events/vxmd8kyaxs3t

- name: Bluegrass Ruby - March 2024
  location: Lexington, KY
  date: 2024-03-05
  start_time: 18:00:00 EST
  end_time: 20:00:00 EST
  url: https://www.meetup.com/the-bluegrass-developers-guild/events/299357620
  service: meetup

- name: Boston Ruby Group - Project Night
  location: Boston, MA
  date: 2024-03-05
  start_time: 18:00:00 EST
  end_time: 20:00:00 EST
  url: https://www.meetup.com/bostonrb/events/299083357
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night March 2024
  location: Online
  date: 2024-03-05
  start_time: 19:00:00 EST
  end_time: 21:30:00 EST
  url: https://www.meetup.com/charlotte-rb/events/298178146
  service: meetup

- name: Paris.rb - Meetup March 2024
  location: Paris, France
  date: 2024-03-05
  start_time: 19:15:00 CET
  end_time: 22:15:00 CET
  url: https://www.meetup.com/paris_rb/events/297791280
  service: meetup

- name: Geneva.rb - Live load testing on a real production app (Alexis Bernard)
  location: Geneva, Switzerland
  date: 2024-03-06
  start_time: 19:00:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/geneva-rb/events/297635680
  service: meetup

- name: Ruby Montevideo - Meetup March 2024
  location: Montevideo, Uruguay
  date: 2024-03-06
  start_time: 19:00:00 UYT
  end_time: 22:00:00 UYT
  url: https://www.meetup.com/ruby-montevideo/events/299462022
  service: meetup

- name: Ruby on Rails Switzerland - Railshöck at Renuo
  location: Zurich, Switzerland
  date: 2024-03-06
  start_time: 18:30:00 CET
  end_time: 20:30:00 CET
  url: https://www.meetup.com/rubyonrails-ch/events/298503697
  service: meetup

- name: Ruby User Group Berlin - March Meetup 2024
  location: Berlin, Germany
  date: 2024-03-07
  start_time: 19:00:00 CET
  end_time: 21:00:00 CET
  url: https://www.rug-b.de/events/march-meetup-2024-771

- name: SD Ruby - Meetup March 2024
  location: San Diego, CA
  date: 2024-03-07
  start_time: 19:00:00 PST
  end_time: 20:30:00 PST
  url: https://www.meetup.com/sdruby/events/297372059
  service: meetup

- name: London Ruby User Group - March 2024 Meeting
  location: London, UK
  date: 2024-03-11
  start_time: 18:00:00 GMT
  end_time: 20:00:00 GMT
  url: https://lrug.org/meetings/2024/march

- name: Lyon.rb - 2024.3 / Tous au SPA
  location: Lyon, France
  date: 2024-03-12
  start_time: 18:30:00 CET
  end_time: 21:30:00 CET
  url: https://www.meetup.com/lyonrb/events/287815581
  service: meetup

- name: 'Upstate Ruby - Tech Topics: Flaky Tests'
  location: Greenville, SC
  date: 2024-03-12
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/upstate-ruby/events/299496096
  service: meetup

- name: WNB.rb - March 2024 Meetup
  location: Online
  date: 2024-03-12
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups/2024/03/12

- name: Boulder Ruby Group - Monthly Presentation Night
  location: Boulder, CO / Online
  date: 2024-03-13
  start_time: 18:00:00 MDT
  end_time: 21:00:00 MDT
  url: https://www.meetup.com/boulder_ruby_group/events/298910801
  service: meetup

- name: Copenhagen Ruby Brigade - March Meetup
  location: Copenhagen, Denmark
  date: 2024-03-13
  start_time: 17:00:00 CET
  end_time: 20:00:00 CET
  url: https://www.meetup.com/copenhagen-ruby-brigade/events/299619735
  service: meetup

- name: NYC.rb - Scott Werner on Going Postel
  location: Online
  date: 2024-03-13
  start_time: 17:30:00 EDT
  end_time: 19:00:00 EDT
  url: https://www.meetup.com/nyc-rb/events/299222897
  service: meetup

- name: Philly.rb - Pubnite March 2024
  location: Online
  date: 2024-03-13
  start_time: 20:30:00 EST
  end_time: 22:00:00 EST
  url: https://www.meetup.com/phillyrb/events/298382203
  service: meetup

- name: Ruby Usergroup Hamburg - March 2024
  location: Hamburg, Germany
  date: 2024-03-13
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-march-2024-775

- name: RubySur - March 2024 - Debugging
  location: Buenos Aires, Argentina / Online
  date: 2024-03-14
  start_time: 19:30:00 ART
  end_time: 20:30:00 ART
  url: https://www.meetup.com/rubyba/events/299590862
  service: meetup

- name: brooklyn.rb - rails new happy_hack_hour
  location: Brooklyn, NY
  date: 2024-03-14
  start_time: 17:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/brooklyn-rb/events/299260716
  service: meetup

- name: Ruby User Group Cologne - März 2024
  location: Cologne, Germany
  date: 2024-03-20
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.colognerb.de/events/kolsch-rb-marz-2024-773

- name: Polish Ruby User Group (PLRUG) - Meetup March 2024
  location: Warsaw, Poland
  date: 2024-03-21
  start_time: 18:00:00 CET
  end_time: 21:00:00 CET
  url: https://www.meetup.com/polishrubyusergroup/events/299748352
  service: meetup

- name: brooklyn.rb - rails g talk --title="Turbo 8" --speaker="Fernando Ramirez"
  location: Brooklyn, NY
  date: 2024-03-21
  start_time: 17:30:00 EDT
  end_time: 19:30:00 EDT
  url: https://www.meetup.com/brooklyn-rb/events/299261125
  service: meetup

- name: Geneva.rb - Contribute! (Dimiter Petrov)
  location: Geneva, Switzerland
  date: 2024-03-27
  start_time: 19:00:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/geneva-rb/events/299288500
  service: meetup

- name: Ruby Türkiye - Virtual Meetup March 2024
  location: Online
  date: 2024-03-28
  start_time: 20:30:00 TRT
  end_time: 22:30:00 TRT
  url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202403-04624a0d

- name: Ruby::AZ - Tips and Techniques for Enhanced Programming Productivity
  location: Chandler, AZ
  date: 2024-03-28
  start_time: 18:00:00 MST
  end_time: 20:00:00 MST
  url: https://www.meetup.com/ruby-az/events/299773440
  service: meetup

- name: SF Bay Area Ruby - Meetup
  location: San Francisco, CA
  date: 2024-03-28
  start_time: 17:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://luma.com/r6d0lghm
  service: luma

- name: Ruby Montevideo - Meetup April 2024
  location: Montevideo, Uruguay
  date: 2024-04-01
  start_time: 19:00:00 UYT
  end_time: 22:00:00 UYT
  url: https://www.meetup.com/ruby-montevideo/events/299957596
  service: meetup

- name: Bluegrass Ruby - April 2024
  location: Lexington, KY
  date: 2024-04-02
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/the-bluegrass-developers-guild/events/300021220
  service: meetup

- name: Boston Ruby Group - Project Night
  location: Boston, MA
  date: 2024-04-02
  start_time: 18:30:00 EDT
  end_time: 20:30:00 EDT
  url: https://www.meetup.com/bostonrb/events/299932407
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night April 2024
  location: Online
  date: 2024-04-02
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/298294592
  service: meetup

- name: Paris.rb - Meetup April 2024
  location: Paris, France
  date: 2024-04-02
  start_time: 19:15:00 CEST
  end_time: 22:15:00 CEST
  url: https://www.meetup.com/paris_rb/events/299466405
  service: meetup

- name: Toronto Ruby - Using Rails introspection to supercharge your editor
  location: Toronto, Canada
  date: 2024-04-03
  start_time: 18:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://radius.to/groups/toronto-ruby/events/bskxhdeqs6pq

- name: SD Ruby - Meetup April 2024
  location: San Diego, CA
  date: 2024-04-04
  start_time: 19:00:00 PDT
  end_time: 20:30:00 PDT
  url: https://www.meetup.com/sdruby/events/297372060
  service: meetup

- name: London Ruby User Group - April 2024 Meeting
  location: London, UK
  date: 2024-04-08
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://lrug.org/meetings/2024/april

- name: Boulder Ruby Group - Monthly Presentation Night
  location: Boulder, CO / Online
  date: 2024-04-10
  start_time: 18:00:00 MDT
  end_time: 21:00:00 MDT
  url: https://www.meetup.com/boulder_ruby_group/events/299093263
  service: meetup

- name: NYC.rb - Avi Flombaum on Building PWAs with Ruby on Rails
  location: Online
  date: 2024-04-10
  start_time: 17:30:00 EDT
  end_time: 19:00:00 EDT
  url: https://www.meetup.com/nyc-rb/events/299753087
  service: meetup

- name: Philly.rb - Pubnite April 2024
  location: Online
  date: 2024-04-10
  start_time: 20:30:00 EDT
  end_time: 22:00:00 EDT
  url: https://www.meetup.com/phillyrb/events/298382205
  service: meetup

- name: Ruby Usergroup Hamburg - April 2024
  location: Hamburg, Germany
  date: 2024-04-10
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-april-2024-777

- name: Ruby User Group Berlin - Elixir Crossover Birthday Event
  location: Berlin, Germany
  date: 2024-04-11
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.rug-b.de/events/elixir-crossover-birthday-event-check-the-date-772

- name: brooklyn.rb - rails new happy_hack_hour
  location: Brooklyn, NY
  date: 2024-04-11
  start_time: 17:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/brooklyn-rb/events/299260755
  service: meetup

- name: Geneva.rb - Revisiting the Hotwire Landscape after Turbo 8 (Marco Roth)
  location: Geneva, Switzerland
  date: 2024-04-16
  start_time: 19:00:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/geneva-rb/events/299288679
  service: meetup

- name: Ruby Frankfurt Meetup - April 2024
  location: Frankfurt am Main, Germany
  date: 2024-04-16
  start_time: 18:30:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/frankfurt-ruby-meetup/events/299586276
  service: meetup

- name: RubySur - April 2024
  location: Buenos Aires, Argentina / Online
  date: 2024-04-16
  start_time: 19:30:00 ART
  end_time: 20:30:00 ART
  url: https://www.meetup.com/rubyba/events/300307806
  service: meetup

- name: Polish Ruby User Group (PLRUG) - Meetup April 2024
  location: Warsaw, Poland
  date: 2024-04-18
  start_time: 18:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/polishrubyusergroup/events/300326352
  service: meetup

- name: Ruby::AZ - Introduction to Turbo in Rails 7
  location: Chandler, AZ
  date: 2024-04-18
  start_time: 18:00:00 MST
  end_time: 20:00:00 MST
  url: https://www.meetup.com/ruby-az/events/300435419
  service: meetup

- name: brooklyn.rb - Recurse Center + Approximate Formal Modeling w/ Brock Wilcox
  location: Brooklyn, NY
  date: 2024-04-18
  start_time: 17:30:00 EDT
  end_time: 19:30:00 EDT
  url: https://www.meetup.com/brooklyn-rb/events/300384805
  service: meetup

- name: LA Ruby - Relaunch Social 2024!!
  location: Los Angeles, CA
  date: 2024-04-24
  start_time: 18:00:00 PDT
  end_time: 20:00:00 PDT
  url: https://www.meetup.com/laruby/events/300435821
  service: meetup

- name: ChicagoRuby - Ruby Drinkup April
  location: Chicago, IL
  date: 2024-04-25
  start_time: 18:00:00 CDT
  end_time: 20:00:00 CDT
  url: https://www.meetup.com/chicagoruby/events/300391251
  service: meetup

- name: Upstate Ruby - Dev tooling show and tell
  location: Greenville, SC
  date: 2024-04-30
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/upstate-ruby/events/300290562
  service: meetup

- name: WNB.rb - April 2024 Meetup
  location: Online
  date: 2024-04-30
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups/2024/04/30

- name: Ruby in London with Mindful Chef
  location: London, UK
  date: 2024-05-01
  start_time: 17:30:00 BST
  end_time: 20:00:00 BST
  url: https://www.meetup.com/ruby-in-london/events/299767863
  service: meetup

- name: Ruby User Group Berlin - May Meetup 2024
  location: Berlin, Germany
  date: 2024-05-02
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.rug-b.de/events/may-meetup-2024-776

- name: SD Ruby - Meetup May 2024
  location: San Diego, CA
  date: 2024-05-02
  start_time: 19:00:00 PDT
  end_time: 20:30:00 PDT
  url: https://www.meetup.com/sdruby/events/297372062
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night May 2024
  location: Online
  date: 2024-05-07
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/298294608
  service: meetup

- name: Paris.rb - Meetup May 2024
  location: Paris, France
  date: 2024-05-07
  start_time: 19:15:00 CEST
  end_time: 22:15:00 CEST
  url: https://www.meetup.com/paris_rb/events/300166981
  service: meetup

- name: NYC.rb - Mob Programming - Turbo Native!
  location: Online
  date: 2024-05-08
  start_time: 17:30:00 EDT
  end_time: 19:00:00 EDT
  url: https://www.meetup.com/nyc-rb/events/299736979
  service: meetup

- name: Ruby Usergroup Hamburg - May 2024
  location: Hamburg, Germany
  date: 2024-05-08
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-may-2024-778

- name: Philippine Ruby Users Group - 2024 Restart Startup launchkit edition
  location: Makati, Philippines & Online
  date: 2024-05-09
  start_time: 18:00:00 HKT
  end_time: 20:00:00 HKT
  url: https://www.facebook.com/events/758719776072660

- name: Ruby Fusion - Meetup May 2024
  location: Online
  date: 2024-05-09
  start_time: 19:00:00 MDT
  end_time: 20:30:00 MDT
  url: https://luma.com/ruby_fusion-inception
  service: luma

- name: Ruby Montevideo - Meetup May 2024
  location: Montevideo, Uruguay
  date: 2024-05-09
  start_time: 19:00:00 UYT
  end_time: 22:00:00 UYT
  url: https://www.meetup.com/ruby-montevideo/events/300576250
  service: meetup

- name: brooklyn.rb - rails new happy_hack_hour
  location: Brooklyn, NY
  date: 2024-05-09
  start_time: 17:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/brooklyn-rb/events/299260764
  service: meetup

- name: Boston Ruby Group - Project Night
  location: Boston, MA
  date: 2024-05-13
  start_time: 18:30:00 EDT
  end_time: 20:30:00 EDT
  url: https://www.meetup.com/bostonrb/events/300022368
  service: meetup

- name: London Ruby User Group - May 2024 Meeting
  location: London, UK
  date: 2024-05-13
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://lrug.org/meetings/2024/may

- name: Austin.rb - Debugging with ruby/debug
  location: Austin, TX
  date: 2024-05-14
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/297610740
  service: meetup

- name: Geneva.rb - Travel through Time (zones) with Ruby and Rails (Vincent Pochet)
  location: Geneva, Switzerland
  date: 2024-05-14
  start_time: 19:00:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/geneva-rb/events/299288843
  service: meetup

- name: Philly.rb - Pubnite May 2024
  location: Online
  date: 2024-05-14
  start_time: 20:30:00 EDT
  end_time: 22:00:00 EDT
  url: https://www.meetup.com/phillyrb/events/298382207
  service: meetup

- name: RubySur - May 2024 - Hotwire
  location: Buenos Aires, Argentina / Online
  date: 2024-05-14
  start_time: 19:30:00 ART
  end_time: 20:30:00 ART
  url: https://www.meetup.com/rubyba/events/300864089
  service: meetup

- name: Boulder Ruby Group - Monthly Presentation Night
  location: Boulder, CO / Online
  date: 2024-05-15
  start_time: 18:00:00 MDT
  end_time: 21:00:00 MDT
  url: https://www.meetup.com/boulder_ruby_group/events/299093266
  service: meetup

- name: North West Ruby User Group - What to do when you’ve been hit by a tornado
  location: Manchester, UK
  date: 2024-05-16
  start_time: 18:30:00 BST
  end_time: 20:30:00 BST
  url: https://nwrug.org/events/What-to-do-when-youve-been-hit-by-a-tornado

- name: SF Bay Area Ruby - Meetup @ New Relic
  location: San Francisco, CA
  date: 2024-05-16
  start_time: 17:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://luma.com/sfruby-may24
  service: luma

- name: Bluegrass Ruby - May 2024
  location: Lexington, KY
  date: 2024-05-21
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/the-bluegrass-developers-guild/events/300478435
  service: meetup

- name: LA Ruby - Nil - Nothing is Easy, Is It?
  location: Los Angeles, CA
  date: 2024-05-22
  start_time: 18:00:00 PDT
  end_time: 20:00:00 PDT
  url: https://www.meetup.com/de-DE/laruby/events/300616988
  service: meetup

- name: Ruby AI Happy Hour
  location: New York, NY
  date: 2024-05-22
  start_time: 17:30:00 EDT
  end_time: 20:30:00 EDT
  url: https://luma.com/cbeeanbk
  service: luma

- name: Toronto Ruby - May Edition
  location: Toronto, Canada
  date: 2024-05-22
  start_time: 18:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://radius.to/groups/toronto-ruby/events/pkgvym5ecyuc

- name: ChicagoRuby - Coffee + Code @ Swadesi Cafe
  location: Chicago, IL
  date: 2024-05-23
  start_time: 14:00:00 CDT
  end_time: 16:00:00 CDT
  url: https://www.meetup.com/chicagoruby/events/301104045
  service: meetup

- name: Ruby::AZ - AI Moderation of User Generated Content with OpenAI
  location: Chandler, AZ
  date: 2024-05-23
  start_time: 18:00:00 MST
  end_time: 20:00:00 MST
  url: https://www.meetup.com/ruby-az/events/300938990
  service: meetup

- name: 'Krakow Ruby Users Group (KRUG) - KRUG #1 / 2024'
  location: Online
  date: 2024-05-28
  start_time: 18:00:00 CEST
  end_time: 22:00:00 CEST
  url: https://luma.com/krug
  service: luma

- name: 'Krakow Ruby Users Group - KRUG #1 2024'
  location: Krakow, Poland
  date: 2024-05-28
  start_time: 18:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/krakow-ruby-users-group/events/300990948
  service: meetup

- name: WNB.rb - May 2024
  location: Online
  date: 2024-05-28
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups/2024/05/28

- name: Frevo on Rails - May
  location: Recife, Brazil
  date: 2024-05-29
  start_time: 18:00:00 BRT
  end_time: 22:00:00 BRT
  url: http://frevoonrails.com.br/posts,/events/2024/05/10/encontro-de-maio-2024

- name: Helsinki Ruby Brigade - Summer kick-off
  location: Helsinki, Finland
  date: 2024-05-29
  start_time: 17:30:00 EEST
  end_time: 20:30:00 EEST
  url: https://rubybrigade.fi/event/2024/summer-kick-off

- name: Austin.rb - Ruby Social (Morning)
  location: Austin, TX
  date: 2024-05-30
  start_time: '08:00:00 CDT'
  end_time: 10:00:00 CDT
  url: https://www.meetup.com/austinrb/events/300256914
  service: meetup

- name: 'Upstate Ruby - Tech Topics: Hotwire'
  location: Greenville, SC
  date: 2024-05-30
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/upstate-ruby/events/301117587
  service: meetup

- name: Ruby Türkiye - Virtual Meetup May 2024
  location: Online
  date: 2024-05-31
  start_time: 20:30:00 TRT
  end_time: 22:30:00 TRT
  url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202404-eeae65c1

- name: Boston Ruby Group - Project Night
  location: Boston, MA
  date: 2024-06-03
  start_time: 18:30:00 EDT
  end_time: 20:30:00 EDT
  url: https://www.meetup.com/bostonrb/events/300772513
  service: meetup

- name: Bluegrass Ruby - June 2024
  location: Lexington, KY
  date: 2024-06-04
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://bluegrassruby.club

- name: Charlotte Ruby - Ruby Hack Night June 2024
  location: Online
  date: 2024-06-04
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/298294644
  service: meetup

- name: Latvian Ruby Community - Ruby Community Meetup
  location: Riga, Latvia
  date: 2024-06-04
  start_time: 17:00:00 EEST
  end_time: 20:00:00 EEST
  url: https://www.startuphouse.lv/event-details/ruby-community-meetup-1

- name: Madison + Ruby + NYC @ Domino
  location: Brooklyn, NY
  date: 2024-06-04
  start_time: 18:00:00 EDT
  end_time: 19:30:00 EDT
  url: https://luma.com/j9qbs1ov
  service: luma

- name: Paris.rb - Meetup June 2024
  location: Paris, France
  date: 2024-06-04
  start_time: 19:15:00 CEST
  end_time: 22:15:00 CEST
  url: https://www.meetup.com/paris_rb/events/300166992
  service: meetup

- name: Geneva.rb - Semantic search in RubyOnRails with GPT-4 (Yannis Jaquet, EPFL)
  location: Geneva, Switzerland
  date: 2024-06-05
  start_time: 19:00:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/geneva-rb/events/299288852
  service: meetup

- name: Ruby Fusion - Function Composition
  location: Online
  date: 2024-06-06
  start_time: 18:30:00 MDT
  end_time: 20:30:00 MDT
  url: https://luma.com/evt-gZUrAREsvN62jAm
  service: luma

- name: Ruby Montevideo - Meetup June 2024
  location: Montevideo, Uruguay
  date: 2024-06-06
  start_time: 19:00:00 UYT
  end_time: 22:00:00 UYT
  url: https://www.meetup.com/ruby-montevideo/events/301320015
  service: meetup

- name: Ruby User Group Berlin - June Meetup 2024
  location: Berlin, Germany
  date: 2024-06-06
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.rug-b.de/events/june-meetup-2024-781

- name: SD Ruby - Meetup June 2024
  location: San Diego, CA
  date: 2024-06-06
  start_time: 19:00:00 PDT
  end_time: 20:30:00 PDT
  url: https://www.meetup.com/sdruby/events/297372063
  service: meetup

- name: London Ruby User Group - June 2024 Meeting
  location: London, UK
  date: 2024-06-10
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://lrug.org/meetings/2024/june

- name: Austin.rb - Contorted Frameworks
  location: Austin, TX
  date: 2024-06-11
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/297610742
  service: meetup

- name: Boston Ruby Group - June 2024 meeting
  location: Boston, MA
  date: 2024-06-11
  start_time: 18:30:00 EDT
  end_time: 20:30:00 EDT
  url: https://www.meetup.com/bostonrb/events/300969682
  service: meetup

- name: Philly.rb - Pubnite June 2024
  location: Online
  date: 2024-06-11
  start_time: 20:30:00 EDT
  end_time: 22:00:00 EDT
  url: https://www.meetup.com/phillyrb/events/298382216
  service: meetup

- name: Barcelona.rb - Meetup June
  location: Barcelona, Spain
  date: 2024-06-12
  start_time: 18:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/barcelona-rb/events/301293554
  service: meetup

- name: Boulder Ruby Group - Monthly Presentation Night
  location: Boulder, CO / Online
  date: 2024-06-12
  start_time: 18:00:00 MDT
  end_time: 21:00:00 MDT
  url: https://www.meetup.com/boulder_ruby_group/events/299591825
  service: meetup

- name: Copenhagen Ruby Brigade - June Meetup
  location: Copenhagen, Denmark
  date: 2024-06-12
  start_time: 17:00:00 CEST
  end_time: 20:00:00 CEST
  url: https://www.copenhagenrb.dk

- name: 'NYC.rb - Obie Fernandez: Ruby and Rails & AI: Leading Prompt-Driven Development'
  location: Online
  date: 2024-06-12
  start_time: 17:30:00 EDT
  end_time: 19:00:00 EDT
  url: https://www.meetup.com/nyc-rb/events/300339701
  service: meetup

- name: RubySur - June 2024 - Asset Pipeline
  location: Buenos Aires, Argentina / Online
  date: 2024-06-13
  start_time: 19:30:00 ART
  end_time: 20:30:00 ART
  url: https://www.meetup.com/rubyba/events/301367143
  service: meetup

- name: SF Bay Area Ruby - Meetup in June @ Productboard
  location: San Francisco, CA
  date: 2024-06-13
  start_time: 17:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://luma.com/sfruby-june24
  service: luma

- name: Ruby Frankfurt Meetup - Summer Edition - June 2024
  location: Frankfurt, Germany
  date: 2024-06-17
  start_time: 18:30:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/frankfurt-ruby-meetup/events/301216095
  service: meetup

- name: Madison + Ruby + Detroit @ Revela
  location: Detroit, MI
  date: 2024-06-20
  start_time: 18:00:00 EDT
  end_time: 19:30:00 EDT
  url: https://luma.com/p53lc1vp
  service: luma

- name: North West Ruby User Group - RubyConf 2023 - Re-interpreting Data by Murray
    Steele
  location: Manchester, UK
  date: 2024-06-20
  start_time: 18:30:00 BST
  end_time: 20:30:00 BST
  url: https://nwrug.org/events/re-interpreting-data-murray-steele

- name: Ruby User Group Cologne - Juni 2024 Meetup
  location: Cologne, Germany
  date: 2024-06-20
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.colognerb.de/events/juni-2024-meetup-779

- name: Ruby::AZ - Vite Ruby for your Rails app's frontend assets
  location: Chandler, AZ
  date: 2024-06-20
  start_time: 18:00:00 MST
  end_time: 20:00:00 MST
  url: https://www.meetup.com/ruby-az/events/301702012
  service: meetup

- name: Toronto Ruby - June Edition
  location: Toronto, Canada
  date: 2024-06-20
  start_time: 18:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://radius.to/groups/toronto-ruby/events/s1tczn2usqf5

- name: ChicagoRuby - Madison+ Ruby + Chicago @ Chime
  location: Chicago, IL
  date: 2024-06-25
  start_time: 18:00:00 CDT
  end_time: 19:30:00 CDT
  url: https://www.meetup.com/chicagoruby/events/301641748
  service: meetup

- name: WNB.rb - June 2024
  location: Online
  date: 2024-06-25
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups/2024/06/25

- name: Austin.rb - Ruby Social (Evening)
  location: Austin, TX
  date: 2024-06-27
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/300256966
  service: meetup

- name: Philippine Ruby Users Group - Heading Hybrid
  location: Multi-location hydrid (Makati & Batangas City, Philippines)
  date: 2024-06-27
  start_time: 18:00:00 HKT
  end_time: 20:00:00 HKT
  url: https://www.meetup.com/ruby-phil/events/301171721
  service: meetup

- name: Boston Ruby Group - Project Night
  location: Boston, MA
  date: 2024-07-01
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/bostonrb/events/301084091
  service: meetup

- name: Bluegrass Ruby - July 2024
  location: Lexington, KY
  date: 2024-07-02
  start_time: 18:00:00 EDT
  end_time: 20:30:00 EDT
  url: https://www.meetup.com/the-bluegrass-developers-guild/events/301833145
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night July 2024
  location: Online
  date: 2024-07-02
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/301353961
  service: meetup

- name: Paris.rb - Meetup July 2024
  location: Paris, France
  date: 2024-07-02
  start_time: 19:15:00 CEST
  end_time: 22:15:00 CEST
  url: https://www.meetup.com/paris_rb/events/301437243
  service: meetup

- name: Ruby User Group Berlin - July 2024 outdoor social gathering
  location: Berlin, Germany
  date: 2024-07-04
  start_time: 18:30:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.rug-b.de/events/canceled-july-2024-outdoor-social-gathering-815
  status: cancelled

- name: London Ruby User Group - July 2024 Meeting
  location: London, UK
  date: 2024-07-08
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://lrug.org/meetings/2024/july

- name: Austin.rb - Modern Authentication with WebAuthn
  location: Austin, TX
  date: 2024-07-09
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/297610747
  service: meetup

- name: Boston Ruby Group - July 2024 meeting
  location: Boston, MA
  date: 2024-07-09
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/bostonrb/events/301988193
  service: meetup

- name: Lyon.rb - 2024.6 / Lightning talks
  location: Lyon, France
  date: 2024-07-09
  start_time: 18:30:00 CET
  end_time: 21:30:00 CET
  url: https://www.meetup.com/lyonrb/events/301316102
  service: meetup

- name: Madison+ Ruby - + NYC @ Cisco Meraki
  location: New York, NY
  date: 2024-07-09
  start_time: 07:30:00 CDT
  end_time: '09:00:00 CDT'
  url: https://luma.com/4bliqbqr
  service: luma

- name: Philly.rb - Pubnite July 2024
  location: Online
  date: 2024-07-09
  start_time: 20:30:00 EDT
  end_time: 22:00:00 EDT
  url: https://www.meetup.com/phillyrb/events/nnlgbtygckbmb
  service: meetup

- name: Boulder Ruby Group - Monthly Presentation Night
  location: Boulder, CO / Online
  date: 2024-07-10
  start_time: 18:00:00 MDT
  end_time: 21:00:00 MDT
  url: https://www.meetup.com/boulder_ruby_group/events/bbsqktygckbnb
  service: meetup

- name: Houston Ruby - July 2024
  location: Houston, TX
  date: 2024-07-10
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/houstonruby/events/301759244
  service: meetup

- name: NYC.rb - Cody Norman on Action Mailbox
  location: Online
  date: 2024-07-10
  start_time: 17:30:00 EDT
  end_time: 19:00:00 EDT
  url: https://www.meetup.com/nyc-rb/events/301062985
  service: meetup

- name: Ruby Usergroup Hamburg - July 2024
  location: Hamburg, Germany
  date: 2024-07-10
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-july-2024-780

- name: Ruby Fusion - Milestones
  location: Online
  date: 2024-07-11
  start_time: 18:30:00 MDT
  end_time: 20:30:00 MDT
  url: https://luma.com/oyzfeg7u
  service: luma

- name: 'Ruby Romania Meetup #05'
  location: Bucharest, Romania
  date: 2024-07-11
  start_time: 19:00:00 EEST
  end_time: 21:00:00 EEST
  url: https://www.meetup.com/ruby-romania/events/302016838
  service: meetup

- name: Ruby Montevideo - Meetup July 2024
  location: Montevideo, Uruguay
  date: 2024-07-12
  start_time: 21:00:00 UYT
  end_time: 23:59:59 UYT
  url: https://www.meetup.com/ruby-montevideo/events/302065709
  service: meetup

- name: Ruby in London with BEAM
  location: London, UK
  date: 2024-07-17
  start_time: 17:30:00 BST
  end_time: 20:30:00 BST
  url: https://www.meetup.com/ruby-in-london/events/300777187
  service: meetup

- name: North West Ruby User Group - Taylor’s Guide to Big Rewrites by Andy Croll
  location: Manchester, UK
  date: 2024-07-18
  start_time: 18:30:00 BST
  end_time: 20:30:00 BST
  url: https://nwrug.org/events/july-2024-taylor-s-guide-to-big-rewrites-by-andy-croll

- name: Ruby::AZ - Implementing RAG in Rails
  location: Chandler, AZ
  date: 2024-07-18
  start_time: 18:00:00 MST
  end_time: 20:00:00 MST
  url: https://www.meetup.com/ruby-az/events/302201104
  service: meetup

- name: RubySur - July 2024 - Turbo!
  location: Buenos Aires, Argentina / Online
  date: 2024-07-18
  start_time: 19:30:00 ART
  end_time: 20:30:00 ART
  url: https://www.meetup.com/rubyba/events/302163493
  service: meetup

- name: SD Ruby - Summer Social
  location: San Diego, CA
  date: 2024-07-18
  start_time: 18:00:00 PDT
  end_time: 20:00:00 PDT
  url: https://www.meetup.com/sdruby/events/301083166
  service: meetup

- name: SF Bay Area Ruby - Meetup in July @ Cisco Meraki
  location: San Francisco, CA
  date: 2024-07-18
  start_time: 17:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://luma.com/bxzdp6mz
  service: luma

- name: Ruby on Rails Switzerland - 20 Years of Rails
  location: Zurich, Switzerland
  date: 2024-07-24
  start_time: 18:00:00 CEST
  end_time: 20:00:00 CEST
  url: https://www.meetup.com/rubyonrails-ch/events/301480681
  service: meetup

- name: "Ruby \U0001F91D AI Happy Hour 2.0"
  location: New York, NY
  date: 2024-07-24
  start_time: 17:30:00 EDT
  end_time: 19:30:00 EDT
  url: https://luma.com/ntmonn8p
  service: luma

- name: Austin.rb - Ruby Social (Morning)
  location: Austin, TX
  date: 2024-07-25
  start_time: 8:00:00 CDT
  end_time: 10:00:00 CDT
  url: https://www.meetup.com/austinrb/events/300257002
  service: meetup

- name: Ruby DF - 3ª Edição - Julho de 2024
  location: Brasilia, Brazil
  date: 2024-07-27
  start_time: '09:30:00 -03'
  end_time: 11:30:00 -03
  url: https://rubydf.com/events/terceira-edicao

- name: WNB.rb - July 2024
  location: Online
  date: 2024-07-30
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups

- name: Philippine Ruby Users Group - Hack the Hybrid!
  location: Multi-location hydrid (Quezon City & Batangas City, Philippines)
  date: 2024-07-31
  start_time: 18:00:00 HKT
  end_time: 20:00:00 HKT
  url: https://www.meetup.com/ruby-phil/events/302437676
  service: meetup

- name: SD Ruby - Meetup August 2024
  location: San Diego, CA
  date: 2024-08-01
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://www.meetup.com/sdruby/events/302290739
  service: meetup

- name: Boston Ruby Group - Project Night
  location: Boston, MA
  date: 2024-08-05
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/bostonrb/events/301905492
  service: meetup

- name: Boston Ruby Group - Project Night August 2024
  location: Boston, MA
  date: 2024-08-05
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://luma.com/69yog413
  service: luma

- name: Bluegrass Ruby - August 2024
  location: Lexington, KY
  date: 2024-08-06
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/the-bluegrass-developers-guild/events/302434430
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night August 2024
  location: Online
  date: 2024-08-06
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/301353966
  service: meetup

- name: Paris.rb - Meetup August 2024
  location: Paris, France
  date: 2024-08-06
  start_time: 19:15:00 CEST
  end_time: 22:15:00 CEST
  url: https://www.meetup.com/paris_rb/events/301437247
  service: meetup

- name: London Ruby User Group - August 2024 Meeting
  location: London, UK
  date: 2024-08-12
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://lrug.org/meetings/2024/august

- name: Austin.rb - Ruby on AI "The magic Lego"
  location: Austin, TX
  date: 2024-08-13
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/297610749
  service: meetup

- name: Boston Ruby Group - August 2024 meeting
  location: Boston, MA
  date: 2024-08-13
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://luma.com/i3r2svfm
  service: luma

- name: Philly.rb - Pubnite August 2024
  location: Online
  date: 2024-08-13
  start_time: 20:30:00 EDT
  end_time: 22:00:00 EDT
  url: https://www.meetup.com/phillyrb/events/302705860
  service: meetup

- name: Ruby Montevideo - Meetup August 2024
  location: Montevideo, Uruguay
  date: 2024-08-13
  start_time: 19:00:00 UYT
  end_time: 22:00:00 UYT
  url: https://www.meetup.com/ruby-montevideo/events/302455776
  service: meetup

- name: Toronto Ruby - Summer of Rails World Edition
  location: Toronto, Canada
  date: 2024-08-13
  start_time: 18:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://radius.to/groups/toronto-ruby/events/tbhhgkd85fmb

- name: 'YC Ruby Meetup: Ruby & Rails powering YC startups in 2024'
  location: San Francisco, CA
  date: 2024-08-13
  start_time: 17:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://events.ycombinator.com/yc-ruby-meetup

- name: Boulder Ruby - August 2024 Presentation Night
  location: Boulder, CO
  date: 2024-08-14
  start_time: 18:00:00 MDT
  end_time: 20:30:00 MDT
  url: https://luma.com/16ykggyu
  service: luma

- name: Ruby Usergroup Hamburg - August 2024
  location: Hamburg, Germany
  date: 2024-08-14
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-august-2024-881

- name: RubySur - August 2024 - Refactoring
  location: Buenos Aires, Argentina / Online
  date: 2024-08-14
  start_time: 19:30:00 ART
  end_time: 20:30:00 ART
  url: https://www.meetup.com/rubyba/events/302656192
  service: meetup

- name: North West Ruby User Group - Delivering Iterative Features
  location: Manchester, UK
  date: 2024-08-15
  start_time: 18:30:00 BST
  end_time: 20:30:00 BST
  url: https://nwrug.org/events/delivering-iterative-features

- name: Ruby Türkiye - Virtual Meetup August 2024
  location: Online
  date: 2024-08-20
  start_time: 21:00:00 TRT
  end_time: 22:30:00 TRT
  url: https://kommunity.com/ruby-turkiye/events/walk-through-of-those-gems-3afc364c

- name: Ruby on Rails Switzerland - Railshöck at Puzzle
  location: Zurich, Switzerland
  date: 2024-08-21
  start_time: 18:30:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/rubyonrails-ch/events/298503717
  service: meetup

- name: Polish Ruby User Group (PLRUG) - Meetup August 2024
  location: Warsaw, Poland
  date: 2024-08-22
  start_time: 18:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/polishrubyusergroup/events/302785548
  service: meetup

- name: Ruby User Group Cologne - August 2024 Meetup
  location: Cologne, Germany
  date: 2024-08-22
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.colognerb.de/events/august-2024-meetup-782

- name: 'Bangkok.rb - Ruby Tuesday #56'
  location: เขตวัฒนา, Thailand
  date: 2024-08-27
  start_time: 18:30:00 +07
  end_time: 20:30:00 +07
  url: https://www.meetup.com/bangkok-rb/events/302552577
  service: meetup

- name: RubyJax - Open Hax August 2024
  location: Jacksonville, FL
  date: 2024-08-27
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/rubyjax/events/302699864
  service: meetup

- name: 'Saigon.rb - Ruby Tuesday #20'
  location: Quận 1, Viet Nam
  date: 2024-08-27
  start_time: 19:00:00 +07
  end_time: 21:00:00 +07
  url: https://www.meetup.com/saigonrb/events/302590681
  service: meetup

- name: WNB.rb - August 2024
  location: Online
  date: 2024-08-27
  start_time: 12:00:00 EDT
  end_time: 13:00:00 EDT
  url: https://www.wnb-rb.dev/meetups

- name: Rails Taiwan - 高雄 Rails Meetup August 2024
  location: Kaohsiung, Taiwan
  date: 2024-08-28
  start_time: 19:00:00 CST
  end_time: 19:00:00 CST
  url: https://www.meetup.com/rails-taiwan/events/302713460
  service: meetup

- name: Austin.rb - Ruby Social - Evening August 2024
  location: Austin, TX
  date: 2024-08-29
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/302551912
  service: meetup

- name: Orange County Ruby - Meetup August 2024
  location: Dana Point, CA
  date: 2024-08-29
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://www.meetup.com/ocruby/events/302748814
  service: meetup

- name: Philippine Ruby Users Group - A night of Ruby Community Roadmapping
  location: Quezon City, Philippines
  date: 2024-08-29
  start_time: 18:00:00 PST
  end_time: 20:00:00 PST
  url: https://www.meetup.com/ruby-phil/events/302886229
  service: meetup

- name: Polish Ruby User Group - Warsztaty Przywódcze (PRUG) August 2024
  location: Poznań, Poland
  date: 2024-08-29
  start_time: 18:00:00 CEST
  end_time: 20:00:00 CEST
  url: https://www.meetup.com/polishrubyusergroup/events/302823685
  service: meetup

- name: Pune Ruby Users Group - August Meetup
  location: Pune, India
  date: 2024-08-31
  start_time: 11:00:00 IST
  end_time: 13:00:00 IST
  url: https://www.meetup.com/punerubymeetup/events/302884102
  status: cancelled
  service: meetup

- name: Orange County Ruby - Ruby Science September 2024
  location: Online
  date: 2024-09-02
  start_time: 10:00:00 PDT
  end_time: 11:00:00 PDT
  url: https://www.meetup.com/ocruby/events/302809972
  service: meetup

- name: Bluegrass Ruby - September
  location: Lexington, KY
  date: 2024-09-03
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/the-bluegrass-developers-guild/events/303108245
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night September 2024
  location: Online
  date: 2024-09-03
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/301353968
  service: meetup

- name: Paris.rb - Meetup September 2024
  location: Paris, France
  date: 2024-09-03
  start_time: 19:15:00 CEST
  end_time: 22:15:00 CEST
  url: https://www.meetup.com/paris_rb/events/301437249
  service: meetup

- name: Portland Ruby Brigade - Ruby Tuesday September 2024
  location: Online
  date: 2024-09-03
  start_time: 18:00:00 PDT
  end_time: 20:00:00 PDT
  url: https://www.meetup.com/portland-ruby-brigade/events/302839871
  service: meetup

- name: RubyJax - Open Hax September 2024
  location: Jacksonville, FL
  date: 2024-09-03
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/rubyjax/events/302836796
  service: meetup

- name: SF Bay Area Ruby - Meetup in September @ GitHub
  location: San Francisco, CA
  date: 2024-09-03
  start_time: 17:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://luma.com/qfyzbfkk
  service: luma

- name: Montreal.rb - Ruby GUI Desktop Development Hands-On Tutorial
  location: Montréal, Canada
  date: 2024-09-04
  start_time: 18:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://www.meetup.com/montrealrb/events/302320603
  service: meetup

- name: Prague.rb - First Wednesday Of The Month - Ruby September 2024
  location: Prague, Czechia
  date: 2024-09-04
  start_time: 19:00:00 CEST
  end_time: 19:00:00 CEST
  url: https://www.meetup.com/praguerb/events/302851699
  service: meetup

- name: Rails Taiwan - 高雄 Rails Meetup September 2024
  location: Kaohsiung, Taiwan
  date: 2024-09-04
  start_time: 19:00:00 CST
  end_time: 19:00:00 CST
  url: https://www.meetup.com/rails-taiwan/events/302844480
  service: meetup

- name: Ruby User Group Berlin - September Meetup 2024
  location: Berlin, Germany
  date: 2024-09-05
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.rug-b.de/events/september-meetup-2024-848

- name: SD Ruby - Monthly Meetup September 2024
  location: San Diego, CA
  date: 2024-09-05
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://www.meetup.com/sdruby/events/302800203
  service: meetup

- name: Ruby and Rails Adelaide - Ruby Burgers September 2024
  location: Adelaide, Australia
  date: 2024-09-06
  start_time: 18:00:00 ACST
  end_time: 20:00:00 ACST
  url: https://www.meetup.com/adelaiderb/events/dzcvqsygcmbjb
  service: meetup

- name: African Ruby Community - Kampala Chapter Mini workshop September 2024
  location: Online
  date: 2024-09-07
  start_time: 11:00:00 EAT
  end_time: 13:00:00 EAT
  url: https://www.meetup.com/african_ruby_community/events/300548245
  service: meetup

- name: Boston Ruby Group - Project Night September 2024
  location: Boston, MA
  date: 2024-09-09
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://luma.com/af2n3jwa
  service: luma

- name: London Ruby User Group - September 2024 Meeting
  location: London, UK
  date: 2024-09-09
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://lrug.org/meetings/2024/september

- name: 'Austin.rb - Visualizing Problems: From Abstract to Concrete'
  location: Austin, TX
  date: 2024-09-10
  start_time: 18:30:00 CDT
  end_time: 20:30:00 CDT
  url: https://www.meetup.com/austinrb/events/297610752
  service: meetup

- name: B'more on Rails - Monthly Meetup September 2024
  location: Online
  date: 2024-09-10
  start_time: 19:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://www.meetup.com/bmore-on-rails/events/302969766
  status: cancelled
  service: meetup

- name: Philly.rb - Pubnite September 2024
  location: Online
  date: 2024-09-10
  start_time: 20:30:00 EDT
  end_time: 22:00:00 EDT
  url: https://www.meetup.com/phillyrb/events/302815061
  service: meetup

- name: RubyJax - Open Hax September 2024
  location: Jacksonville, FL
  date: 2024-09-10
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/rubyjax/events/302970360
  service: meetup

- name: Utah Ruby Users Group - URUG Meetup in Lehi
  location: Lehi, UT
  date: 2024-09-10
  start_time: 19:00:00 MDT
  end_time: 21:00:00 MDT
  url: https://www.meetup.com/utah-ruby-users-group/events/302948352
  service: meetup

- name: VanRuby - CI at Scale and Challenges with Rails Monolith
  location: North Vancouver, Canada
  date: 2024-09-10
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://www.meetup.com/vancouver-ruby/events/302810382
  service: meetup

- name: 'Atlanta Ruby - Hidden Pioneers: Programmers of the ENIAC & the Birth of Computing
    [ATLRUG]'
  location: Online
  date: 2024-09-11
  start_time: 18:30:00 EDT
  end_time: 20:30:00 EDT
  url: https://www.meetup.com/atlantaruby/events/302989742
  service: meetup

- name: Boulder Ruby - September 2024 Presentation Night
  location: Boulder, CO
  date: 2024-09-11
  start_time: 18:00:00 MDT
  end_time: 20:30:00 MDT
  url: https://luma.com/yithw455
  service: luma

- name: Copenhagen Ruby Brigade - Ruby Brigade at PROSA
  location: Copenhagen, Denmark
  date: 2024-09-11
  start_time: 17:00:00 CEST
  end_time: 20:00:00 CEST
  url: https://www.meetup.com/copenhagen-ruby-brigade/events/302958358
  service: meetup

- name: Indianapolis Ruby Brigade - Monthly Meetup September 2024
  location: Indianapolis, IN
  date: 2024-09-11
  start_time: 19:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://www.meetup.com/indyrb/events/302989114
  service: meetup

- name: NYC.rb - Dennis Martinez on Kamal
  location: Online
  date: 2024-09-11
  start_time: 17:30:00 EDT
  end_time: 19:00:00 EDT
  url: https://www.meetup.com/nyc-rb/events/301062992
  service: meetup

- name: Paris Ruby Workshop - Workshop chez September 2024
  location: Paris, France
  date: 2024-09-11
  start_time: 19:15:00 CEST
  end_time: 21:15:00 CEST
  url: https://www.meetup.com/paris-ruby-workshop/events/302568707
  service: meetup

- name: Rails Taiwan - 高雄 Rails Meetup September 2024
  location: Kaohsiung, Taiwan
  date: 2024-09-11
  start_time: 19:00:00 CST
  end_time: 19:00:00 CST
  url: https://www.meetup.com/rails-taiwan/events/302977852
  service: meetup

- name: Ruby Montevideo - Meetup - Setiembre 2024
  location: Montevideo, Uruguay
  date: 2024-09-11
  start_time: 19:00:00 -03
  end_time: 22:00:00 -03
  url: https://www.meetup.com/ruby-montevideo/events/303136598
  service: meetup

- name: Ruby Usergroup Hamburg - September 2024
  location: Hamburg, Germany
  date: 2024-09-11
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-september-2024-914

- name: 'African Ruby Community - Ruby Thursdays: To be determined September 2024'
  location: Online
  date: 2024-09-12
  start_time: 18:00:00 EAT
  end_time: 20:00:00 EAT
  url: https://www.meetup.com/african_ruby_community/events/301578297
  service: meetup

- name: Ruby Buenos Aires - Ruby Meetup - Septiembre 2024 - Dual Booting
  location: CABA, Argentina
  date: 2024-09-12
  start_time: 19:00:00 -03
  end_time: 21:00:00 -03
  url: https://www.meetup.com/rubyba/events/303276300
  service: meetup

- name: Columbus Ruby Brigade - Monthly Meetup September 2024
  location: Columbus, OH
  date: 2024-09-16
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/columbusrb/events/303084093
  service: meetup

- name: Miami Ruby Brigade - September 2024
  location: Coral Gables, FL
  date: 2024-09-16
  start_time: 19:00:00 EDT
  end_time: 21:00:00 EDT
  url: https://www.meetup.com/miamirb/events/303077048
  status: cancelled
  service: meetup

- name: Orange County Ruby - Ruby Science September 2024
  location: Online
  date: 2024-09-16
  start_time: 10:00:00 PDT
  end_time: 11:00:00 PDT
  url: https://www.meetup.com/ocruby/events/303078883
  service: meetup

- name: Boston Ruby Group - September 2024 meeting
  location: Boston, MA
  date: 2024-09-17
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://luma.com/sbesulha
  service: luma

- name: Frankfurt Ruby Meetup - Ruby Frankfurt Meetup - September 2024 - Database
    MasKING
  location: Frankfurt am Main, Germany
  date: 2024-09-17
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/frankfurt-ruby-meetup/events/302960601
  service: meetup

- name: 'Krakow Ruby Users Group (KRUG) - KRUG #2 / 2024 powered by community'
  location: Online
  date: 2024-09-17
  start_time: 18:00:00 CEST
  end_time: 22:00:00 CEST
  url: https://luma.com/krug
  service: luma

- name: 'Krakow Ruby Users Group (KRUG) - KRUG #2 / 2024 powered by community :)'
  location: Kraków, Poland
  date: 2024-09-17
  start_time: 18:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/krakow-ruby-users-group/events/302822679
  service: meetup

- name: RubyJax - Open Hax September 2024
  location: Jacksonville, FL
  date: 2024-09-17
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/rubyjax/events/303104994
  service: meetup

- name: Toulouse.rb - Conf & Apéro - Septembre
  location: Toulouse, France
  date: 2024-09-17
  start_time: 18:30:00 CEST
  end_time: 20:30:00 CEST
  url: https://www.meetup.com/toulouse-ruby-friends/events/301833528
  service: meetup

- name: Geneva.rb - Optimizing Financial Data Ingestion at Inyova (Rafael Millán)
  location: Genève, Switzerland
  date: 2024-09-18
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/geneva-rb/events/303018636
  service: meetup

- name: Portland Ruby Brigade - Cocktails + Code September 2024
  location: Portland, OR
  date: 2024-09-18
  start_time: 18:00:00 PDT
  end_time: 20:00:00 PDT
  url: https://www.meetup.com/portland-ruby-brigade/events/302855296
  service: meetup

- name: Rails Taiwan - 高雄 Rails Meetup September 2024
  location: Kaohsiung, Taiwan
  date: 2024-09-18
  start_time: 19:00:00 CST
  end_time: 19:00:00 CST
  url: https://www.meetup.com/rails-taiwan/events/303114134
  service: meetup

- name: West Midlands Ruby User Group - Monthly Meetup September 2024
  location: Online
  date: 2024-09-18
  start_time: 19:00:00 BST
  end_time: 21:00:00 BST
  url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/303122363
  service: meetup

- 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://christchurch.ruby.nz/events/2024/2024-09-19-meetup

- name: 'North West Ruby User Group - From Teaching to Coding: How I Changed Careers'
  location: Manchester, UK
  date: 2024-09-19
  start_time: 18:30:00 BST
  end_time: 20:30:00 BST
  url: https://nwrug.org/events/september-2024-from-teaching-to-coding-how-i-changed-careers

- name: 'Polish Ruby User Group - Warsaw meetup #September'
  location: Warszawa, Poland
  date: 2024-09-19
  start_time: 18:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/polishrubyusergroup/events/303197441
  service: meetup

- 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
  service: meetup

- name: Ruby and Rails Adelaide - Ruby Burgers September 2024
  location: Adelaide, Australia
  date: 2024-09-20
  start_time: 18:00:00 ACST
  end_time: 20:00:00 ACST
  url: https://www.meetup.com/adelaiderb/events/dzcvqsygcmbbc
  service: meetup

- name: African Ruby Community - Kampala Chapter Mini workshop September 2024
  location: Online
  date: 2024-09-21
  start_time: 11:00:00 EAT
  end_time: 13:00:00 EAT
  url: https://www.meetup.com/african_ruby_community/events/303170792
  service: meetup

- name: Bangalore Ruby Users Group - Bengaluru Ruby Users Meetup - September 2024
  location: Bangalore, India
  date: 2024-09-21
  start_time: 10:00:00 IST
  end_time: 12:00:00 IST
  url: https://www.meetup.com/bangalore-ruby-users-group/events/303346229
  service: meetup

- name: Pune Ruby Users Group - September Meetup
  location: Pune, India
  date: 2024-09-21
  start_time: 11:00:00 IST
  end_time: 13:00:00 IST
  url: https://www.meetup.com/punerubymeetup/events/303153624
  service: meetup

- name: 'Auckland Ruby - Ruby Night September: Hacknight - Write your AI battle ship
    - Take 2'
  location: Auckland, New Zealand
  date: 2024-09-23
  start_time: 18:30:00 NZST
  end_time: 21:30:00 NZST
  url: https://www.meetup.com/aucklandruby/events/299606026
  service: meetup

- name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #133 Wrzesień 2024'
  location: Wrocław, Poland
  date: 2024-09-23
  start_time: 19:00:00 CEST
  end_time: 21:00:00 CEST
  url: https://www.meetup.com/drugpl/events/303543533
  service: meetup

- name: 'Bangkok.rb - Ruby Tuesday #57'
  location: เขตวัฒนา, Thailand
  date: 2024-09-24
  start_time: 18:30:00 +07
  end_time: 20:30:00 +07
  url: https://www.meetup.com/bangkok-rb/events/303075559
  service: meetup

- name: BelfastRuby - Ruby On Rails
  location: Belfast, UK
  date: 2024-09-24
  start_time: 19:00:00 BST
  end_time: 21:00:00 BST
  url: https://www.meetup.com/belfastruby/events/303119630
  service: meetup

- name: Iowa City Ruby - [Ruby] Meet and Greet Lunch
  location: Iowa City, IA
  date: 2024-09-24
  start_time: 11:30:00 CDT
  end_time: 13:00:00 CDT
  url: https://www.meetup.com/icruby/events/303588137
  service: meetup

- name: Ruby Zagreb - RubyZG September meetup @ MaMa
  location: Zagreb, Croatia
  date: 2024-09-24
  start_time: 18:00:00 CEST
  end_time: 19:30:00 CEST
  url: https://www.meetup.com/rubyzg/events/303416478
  service: meetup

- name: RubyJax - Open Hax September 2024
  location: Jacksonville, FL
  date: 2024-09-24
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/rubyjax/events/303245553
  service: meetup

- name: 'Saigon.rb - Ruby Tuesday #21'
  location: Quận 1, Viet Nam
  date: 2024-09-24
  start_time: 19:00:00 +07
  end_time: 20:30:00 +07
  url: https://www.meetup.com/saigonrb/events/303479332
  service: meetup

- name: Rails Taiwan - 高雄 Rails Meetup September 2024
  location: Kaohsiung, Taiwan
  date: 2024-09-25
  start_time: 19:00:00 CST
  end_time: 19:00:00 CST
  url: https://www.meetup.com/rails-taiwan/events/303253481
  service: meetup

- name: Stockholm Ruby - Cozy Ruby Meetup at Hemnet
  location: Stockholm, Sweden
  date: 2024-09-25
  start_time: 17:30:00 CEST
  end_time: 19:30:00 CEST
  url: https://www.meetup.com/sthlmrb/events/303483996
  service: meetup

- name: Austin.rb - Ruby Social - Morning
  location: Austin, TX
  date: 2024-09-26
  start_time: '08:00:00 CDT'
  end_time: 10:00:00 CDT
  url: https://www.meetup.com/austinrb/events/302552064
  service: meetup

- name: Melbourne Ruby - September 2024
  location: Southbank, Australia
  date: 2024-09-26
  start_time: 18:00:00 AEST
  end_time: 21:00:00 AEST
  url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/297781285
  service: meetup

- name: Orange County Ruby - Meetup September 2024
  location: Dana Point, CA
  date: 2024-09-26
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://www.meetup.com/ocruby/events/303289879
  service: meetup

- name: Polish Ruby User Group - PRUG - September 2024
  location: Poznań, Poland
  date: 2024-09-26
  start_time: 18:00:00 CEST
  end_time: 20:00:00 CEST
  url: https://www.meetup.com/polishrubyusergroup/events/303347188
  service: meetup

- name: Startups on Rails Social Event - Rails World Toronto
  location: Toronto, Canada
  date: 2024-09-26
  start_time: 19:00:00 EDT
  end_time: 23:00:00 EDT
  url: https://luma.com/rq2pgkxk
  service: luma

- name: "Nantes.rb - \U0001F680 C'est la rentrée pour les fans de Ruby ! \U0001F680"
  location: Nantes, France
  date: 2024-09-27
  start_time: 19:30:00 CEST
  end_time: 21:30:00 CEST
  url: https://www.meetup.com/nantes-rb/events/303348681
  service: meetup

- name: Orange County Ruby - Ruby Science September 2024
  location: Online
  date: 2024-09-30
  start_time: 10:00:00 PDT
  end_time: 11:00:00 PDT
  url: https://www.meetup.com/ocruby/events/303353573
  service: meetup

- name: Bluegrass Ruby - October 2024
  location: Lexington, KY
  date: 2024-10-01
  start_time: 18:00:00 EDT
  end_time: 20:00:00 EDT
  url: https://bluegrassruby.club

- name: Brighton Ruby Group - We're Back From The Dead
  location: Brighton, UK
  date: 2024-10-01
  start_time: 18:00:00 BST
  end_time: 20:00:00 BST
  url: https://www.meetup.com/brighton-ruby-group/events/300466837
  service: meetup

- name: Charlotte Ruby - Ruby Hack Night October 2024
  location: Online
  date: 2024-10-01
  start_time: 19:00:00 EDT
  end_time: 21:30:00 EDT
  url: https://www.meetup.com/charlotte-rb/events/301353970
  service: meetup

- name: 'Ruby Malaysia - Ruby Tuesdays KL #110'
  location: Kuala Lumpur, Malaysia
  date: 2024-10-01
  start_time: 19:30:00 +08
  end_time: 21:30:00 +08
  url: https://www.meetup.com/ruby-malaysia/events/303635983
  service: meetup

- name: RubyJax - Open Hax October 2024
  location: Jacksonville, FL
  date: 2024-10-01
  start_time: 18:30:00 EDT
  end_time: 20:00:00 EDT
  url: https://www.meetup.com/rubyjax/events/303379089
  service: meetup

- name: Seattle.rb - October 2024
  location: Seattle, WA
  date: 2024-10-01
  start_time: 19:00:00 PDT
  end_time: 21:00:00 PDT
  url: https://seattlerb.org/?event_id=23

- name: Singapore Ruby Group - RubySG September Meetup
  location: Singapore, Singapore
  date: 2024-10-01
  start_time: 19:00:00 +08
  end_time: 21:00:00 +08
  url: https://www.meetup.com/singapore-ruby-group/events/303616940
  service: meetup

- name: 'Barcelona.rb - meetup #October'
  location: Barcelona, S
Download .txt
gitextract_frcsybe9/

├── .github/
│   └── workflows/
│       ├── deploy.yml
│       ├── meetups.yml
│       └── verify.yml
├── .gitignore
├── .ruby-version
├── 404.html
├── CNAME
├── Gemfile
├── LICENSE.md
├── README.md
├── Rakefile
├── _config.yml
├── _data/
│   ├── conferences.yml
│   ├── meetup_groups.yml
│   └── meetups.yml
├── _includes/
│   ├── event.html
│   ├── filters.html
│   └── meetup.html
├── _layouts/
│   ├── default.html
│   ├── page.html
│   └── post.html
├── _plugins/
│   └── continent_tag.rb
├── calendar.ics
├── cfp/
│   └── index.html
├── cfp.ics
├── css/
│   └── style.css
├── feed.xml
├── index.html
├── js/
│   └── callout.js
├── meetups/
│   └── index.html
├── past/
│   └── index.html
└── src/
    ├── data_file_validator.rb
    ├── events/
    │   ├── abstract_event.rb
    │   ├── ical_event.rb
    │   ├── luma_event.rb
    │   └── meetup_event.rb
    ├── meetup_client.rb
    ├── meetup_graphql_schema.json
    ├── meetups_file.rb
    ├── meetups_file_entry.rb
    ├── queries/
    │   └── events_query.rb
    ├── static/
    │   ├── conference.rb
    │   ├── meetup.rb
    │   └── meetup_group.rb
    └── static.rb
Download .txt
SYMBOL INDEX (94 symbols across 14 files)

FILE: _plugins/continent_tag.rb
  type Jekyll (line 3) | module Jekyll
    class ContinentTag (line 4) | class ContinentTag < Liquid::Block
      method render (line 5) | def render(context)

FILE: js/callout.js
  function getCalloutText (line 1) | function getCalloutText(dateString, phrase) {
  function isSameDay (line 24) | function isSameDay(date1, date2) {
  function getRelativeTimePhrase (line 32) | function getRelativeTimePhrase(date) {
  function updateCallouts (line 51) | function updateCallouts() {

FILE: src/data_file_validator.rb
  class DataFileValidator (line 1) | class DataFileValidator
    method validate (line 4) | def self.validate(events, allowed_keys, type = :conference)
    method initialize (line 8) | def initialize(events, allowed_keys, type = :conference)
    method validate (line 14) | def validate
    method missing_keys? (line 62) | def missing_keys?
    method bonus_keys? (line 66) | def bonus_keys?
    method duplicate_events? (line 70) | def duplicate_events?
    method missing_announced_on_date? (line 74) | def missing_announced_on_date?
    method required_keys (line 80) | def required_keys(type = @type)
    method detect_service_from_url (line 91) | def detect_service_from_url(url)

FILE: src/events/abstract_event.rb
  class AbstractEvent (line 6) | class AbstractEvent
    method service_id_for_url (line 13) | def self.service_id_for_url(url)
    method initialize (line 28) | def initialize(object:, group:)
    method tz (line 33) | def tz
    method event_title (line 37) | def event_title
    method meetup_file_entry (line 57) | def meetup_file_entry
    method service_id (line 70) | def service_id
    method event_date (line 74) | def event_date
    method event_status (line 78) | def event_status
    method event_name (line 90) | def event_name
    method event_start_time (line 94) | def event_start_time
    method event_end_time (line 98) | def event_end_time
    method event_location (line 102) | def event_location
    method event_url (line 106) | def event_url

FILE: src/events/ical_event.rb
  class IcalEvent (line 3) | class IcalEvent < AbstractEvent
    method event_location (line 4) | def event_location
    method service_id (line 14) | def service_id
    method event_name (line 18) | def event_name
    method event_start_time (line 22) | def event_start_time
    method event_end_time (line 26) | def event_end_time
    method event_url (line 30) | def event_url

FILE: src/events/luma_event.rb
  class LumaEvent (line 3) | class LumaEvent < AbstractEvent
    method event_location (line 4) | def event_location
    method event_name (line 26) | def event_name
    method event_start_time (line 30) | def event_start_time
    method event_end_time (line 34) | def event_end_time
    method event_url (line 38) | def event_url

FILE: src/events/meetup_event.rb
  class MeetupEvent (line 5) | class MeetupEvent < AbstractEvent
    method event_name (line 6) | def event_name
    method event_start_time (line 10) | def event_start_time
    method event_end_time (line 14) | def event_end_time
    method event_url (line 18) | def event_url
    method event_status (line 22) | def event_status
    method event_location (line 29) | def event_location

FILE: src/meetup_client.rb
  type MeetupClient (line 6) | module MeetupClient
    function headers (line 9) | def headers(context)

FILE: src/meetups_file.rb
  class MeetupsFile (line 8) | class MeetupsFile
    method read (line 11) | def self.read
    method initialize (line 15) | def initialize(content:)
    method find_by (line 25) | def find_by(service_id: nil, url: nil)
    method fetch_group! (line 35) | def fetch_group!(group, past: false)
    method fetch! (line 81) | def fetch!(id = nil, past: false)
    method write_pull_request_title! (line 94) | def write_pull_request_title!
    method write_pull_request_body! (line 142) | def write_pull_request_body!
    method write! (line 185) | def write!

FILE: src/meetups_file_entry.rb
  function initialize (line 4) | def initialize(name:, location:, date:, start_time:, end_time:, url:, st...
  function from_yaml_item (line 11) | def self.from_yaml_item(hash)
  function service_id (line 25) | def service_id
  function detect_service (line 29) | def detect_service(url)
  function to_hash (line 42) | def to_hash
  function to_md (line 58) | def to_md
  function to_yaml (line 64) | def to_yaml(options = {})

FILE: src/static.rb
  type Static (line 1) | module Static

FILE: src/static/conference.rb
  class Conference (line 3) | class Conference < FrozenRecord::Base

FILE: src/static/meetup.rb
  class Meetup (line 3) | class Meetup < FrozenRecord::Base
    method for_group (line 4) | def self.for_group(group)
    method service_id (line 16) | def service_id

FILE: src/static/meetup_group.rb
  class MeetupGroup (line 13) | class MeetupGroup < FrozenRecord::Base
    method upcoming_events (line 17) | def upcoming_events
    method cancelled_events (line 26) | def cancelled_events
    method new_events (line 34) | def new_events
    method new_past_events (line 40) | def new_past_events
    method past_events (line 46) | def past_events
    method missing_events (line 54) | def missing_events
    method upcomping_existing_events (line 60) | def upcomping_existing_events
    method past_existing_events (line 64) | def past_existing_events
    method existing_events (line 68) | def existing_events
    method meetupdotcom? (line 72) | def meetupdotcom?
    method luma? (line 76) | def luma?
    method ical? (line 80) | def ical?
    method tz (line 84) | def tz
    method fetch_past_events (line 90) | def fetch_past_events
    method fetch_events (line 103) | def fetch_events
    method fetch_past_meetup_events (line 116) | def fetch_past_meetup_events
    method fetch_meetup_events (line 122) | def fetch_meetup_events
    method fetch_luma_events (line 128) | def fetch_luma_events
    method fetch_ical_events (line 134) | def fetch_ical_events
Condensed preview — 45 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (525K chars).
[
  {
    "path": ".github/workflows/deploy.yml",
    "chars": 1549,
    "preview": "name: Deploy to GitHub Pages\n\non:\n  push:\n    branches: [\"main\"]\n  schedule:\n    - cron: \"0 7 * * *\" # Runs every day at"
  },
  {
    "path": ".github/workflows/meetups.yml",
    "chars": 4468,
    "preview": "name: Fetch Meetups\n\non:\n  workflow_dispatch:\n  schedule:\n    - cron: \"0 0 * * *\" # Runs every day at 00:00 UTC time\n\npe"
  },
  {
    "path": ".github/workflows/verify.yml",
    "chars": 507,
    "preview": "name: Verify Data\npermissions:\n  contents: read\n\non: [push, pull_request]\njobs:\n  verify:\n    runs-on: ubuntu-latest\n   "
  },
  {
    "path": ".gitignore",
    "chars": 72,
    "preview": "_site\n.jekyll-metadata\nbin/\npull_request_title.txt\npull_request_body.md\n"
  },
  {
    "path": ".ruby-version",
    "chars": 6,
    "preview": "3.3.5\n"
  },
  {
    "path": "404.html",
    "chars": 369,
    "preview": "---\nlayout: default\n---\n<article id=\"error\">\n  <h1>Welp, that sucks</h1>\n  <p>There was a problem finding the page you r"
  },
  {
    "path": "CNAME",
    "chars": 19,
    "preview": "rubyconferences.org"
  },
  {
    "path": "Gemfile",
    "chars": 283,
    "preview": "source 'https://rubygems.org'\n\nruby File.read(\".ruby-version\").strip\n\ngem 'html-proofer'\ngem 'jekyll'\ngem 'rake'\ngem 'gr"
  },
  {
    "path": "LICENSE.md",
    "chars": 244,
    "preview": "The design of the site is copyrighted by Cameron Daigle.\n\nAll other original work uses the Creative Commons\n[Attribution"
  },
  {
    "path": "README.md",
    "chars": 4940,
    "preview": "# Ruby Conferences\n\n[RubyConferences.org][r] is a simple list of Ruby conferences, published\ncollaboratively with the Ru"
  },
  {
    "path": "Rakefile",
    "chars": 2891,
    "preview": "#!/usr/bin/env rake\n\nrequire \"yaml\"\nrequire \"date\"\nrequire \"ostruct\"\n\nrequire \"./src/data_file_validator\"\nrequire \"./src"
  },
  {
    "path": "_config.yml",
    "chars": 264,
    "preview": "name: Ruby Conferences\nurl: https://rubyconferences.org\nsafe: false\nlsi: false\nsource: .\nexclude:\n  - CNAME\n  - Dangerfi"
  },
  {
    "path": "_data/conferences.yml",
    "chars": 93506,
    "preview": "---\n\n- name: Magic Ruby 2011\n  location: Orlando, FL\n  start_date: 2011-02-04\n  end_date: 2011-02-05\n  url: https://web."
  },
  {
    "path": "_data/meetup_groups.yml",
    "chars": 23415,
    "preview": "---\n\n- id: aarhusrb\n  name: aarhus.rb\n  service: meetupdotcom\n\n- id: adelaiderb\n  name: Ruby and Rails Adelaide\n  servic"
  },
  {
    "path": "_data/meetups.yml",
    "chars": 302325,
    "preview": "---\n\n- name: Seattle.rb - February 2002\n  location: Seattle, WA\n  date: 2002-02-28\n  start_time: 19:00:00 PDT\n  end_time"
  },
  {
    "path": "_includes/event.html",
    "chars": 3510,
    "preview": "<div class=\"list-item {% continent %}{{ event.location | split: ', ' | last }}{% endcontinent %}\">\n  <dt>\n    {% if even"
  },
  {
    "path": "_includes/filters.html",
    "chars": 6597,
    "preview": "<div class=\"filters-wrapper\">\n  {% if meetups %}\n    <div class=\"filter-container month-filters\">\n      {% assign unique"
  },
  {
    "path": "_includes/meetup.html",
    "chars": 1787,
    "preview": "{% comment %} Handle both single meetup and grouped meetups {% endcomment %}\n{% if meetup_group %}\n  {% assign meetups_t"
  },
  {
    "path": "_layouts/default.html",
    "chars": 3305,
    "preview": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <meta content=\"IE=edge;chrome=1\" http-equiv=\"X-UA-Compati"
  },
  {
    "path": "_layouts/page.html",
    "chars": 209,
    "preview": "---\nlayout: default\n---\n<article class=\"post\">\n\n  <header class=\"post-header\">\n    <h1 class=\"post-title\">{{ page.title "
  },
  {
    "path": "_layouts/post.html",
    "chars": 618,
    "preview": "---\nlayout: default\n---\n<article class=\"post\" itemscope itemtype=\"https://schema.org/BlogPosting\">\n\n  <header class=\"pos"
  },
  {
    "path": "_plugins/continent_tag.rb",
    "chars": 858,
    "preview": "require \"countries\"\n\nmodule Jekyll\n  class ContinentTag < Liquid::Block\n    def render(context)\n      country_code = sup"
  },
  {
    "path": "calendar.ics",
    "chars": 750,
    "preview": "---\nlayout: null\n---\nBEGIN:VCALENDAR\nVERSION:2.0\nPRODID:https://rubyconferences.org/\nMETHOD:PUBLISH\n{% for event in site"
  },
  {
    "path": "cfp/index.html",
    "chars": 550,
    "preview": "---\nlayout: default\n---\n<style>\n  #home a { font-weight: bold; }\n  #home p { margin-bottom: 12px; }\n</style>\n<article id"
  },
  {
    "path": "cfp.ics",
    "chars": 1133,
    "preview": "---\nlayout: null\n---\nBEGIN:VCALENDAR\nVERSION:2.0\nPRODID:https://rubyconferences.org/cfp\nMETHOD:PUBLISH\n{% for event in s"
  },
  {
    "path": "css/style.css",
    "chars": 7315,
    "preview": "@charset \"UTF-8\";\n\nul, ol {\n  list-style: none;\n}\n\nh1, h2, h3, h4, h5, h6, pre, code {\n  font-size: 1em;\n}\n\nul, ol, li, "
  },
  {
    "path": "feed.xml",
    "chars": 911,
    "preview": "---\n---\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\">\n  <title type=\"text\" xml:lang="
  },
  {
    "path": "index.html",
    "chars": 561,
    "preview": "---\nlayout: default\n---\n<style>\n  #home a { font-weight: bold; }\n  #home p { margin-bottom: 12px; }\n</style>\n<article id"
  },
  {
    "path": "js/callout.js",
    "chars": 1597,
    "preview": "function getCalloutText(dateString, phrase) {\n  if (!dateString) return phrase\n\n  const date = new Date(dateString)\n  co"
  },
  {
    "path": "meetups/index.html",
    "chars": 1460,
    "preview": "---\nlayout: default\n---\n<article id=\"home\">\n  <dl>\n    {% assign now = \"now\" | date: \"%Y-%m-%d 00:00:00\" | date: \"%s\" | "
  },
  {
    "path": "past/index.html",
    "chars": 665,
    "preview": "---\nlayout: default\n---\n<style>\n  #past a { font-weight: bold; }\n  #past p { margin-bottom: 12px; }\n</style>\n<article id"
  },
  {
    "path": "src/data_file_validator.rb",
    "chars": 2523,
    "preview": "class DataFileValidator\n  attr_accessor :events\n\n  def self.validate(events, allowed_keys, type = :conference)\n    new(e"
  },
  {
    "path": "src/events/abstract_event.rb",
    "chars": 2505,
    "preview": "require \"forwardable\"\nrequire \"tzinfo\"\n\nrequire_relative \"../meetups_file_entry\"\n\nclass AbstractEvent\n  extend Forwardab"
  },
  {
    "path": "src/events/ical_event.rb",
    "chars": 664,
    "preview": "require_relative \"./abstract_event\"\n\nclass IcalEvent < AbstractEvent\n  def event_location\n    location = object.location"
  },
  {
    "path": "src/events/luma_event.rb",
    "chars": 970,
    "preview": "require_relative \"./abstract_event\"\n\nclass LumaEvent < AbstractEvent\n  def event_location\n    location = object.location"
  },
  {
    "path": "src/events/meetup_event.rb",
    "chars": 1313,
    "preview": "require \"countries\"\n\nrequire_relative \"./abstract_event\"\n\nclass MeetupEvent < AbstractEvent\n  def event_name\n    object."
  },
  {
    "path": "src/meetup_client.rb",
    "chars": 486,
    "preview": "require \"pathname\"\n\nrequire \"graphql/client\"\nrequire \"graphql/client/http\"\n\nmodule MeetupClient\n  BASE = \"https://api.me"
  },
  {
    "path": "src/meetup_graphql_schema.json",
    "chars": 13156,
    "preview": "{\n  \"data\": {\n    \"__schema\": {\n      \"queryType\": {\n        \"name\": \"Query\"\n      },\n      \"types\": [\n        {\n       "
  },
  {
    "path": "src/meetups_file.rb",
    "chars": 5331,
    "preview": "require \"date\"\nrequire \"yaml\"\nrequire \"pathname\"\n\nrequire_relative \"./meetups_file_entry\"\nrequire_relative \"./static/mee"
  },
  {
    "path": "src/meetups_file_entry.rb",
    "chars": 1483,
    "preview": "MeetupsFileEntry = Data.define(:name, :location, :date, :start_time, :end_time, :url, :status, :service) do\n  attr_reade"
  },
  {
    "path": "src/queries/events_query.rb",
    "chars": 1393,
    "preview": "require_relative \"../meetup_client\"\n\neventConnection = <<-GRAPHQL\n  count\n  edges {\n    cursor\n    node {\n      id\n     "
  },
  {
    "path": "src/static/conference.rb",
    "chars": 72,
    "preview": "require_relative \"../static\"\n\nclass Conference < FrozenRecord::Base\nend\n"
  },
  {
    "path": "src/static/meetup.rb",
    "chars": 515,
    "preview": "require_relative \"../static\"\n\nclass Meetup < FrozenRecord::Base\n  def self.for_group(group)\n    if group.meetupdotcom?\n "
  },
  {
    "path": "src/static/meetup_group.rb",
    "chars": 4065,
    "preview": "require \"ostruct\"\nrequire \"tzinfo\"\nrequire \"icalendar\"\n\nrequire_relative \"./meetup\"\nrequire_relative \"../static\"\nrequire"
  },
  {
    "path": "src/static.rb",
    "chars": 242,
    "preview": "module Static\nend\n\nrequire \"frozen_record\"\n\nFrozenRecord::Base.auto_reloading = true\nFrozenRecord::Base.base_path = \"./_"
  }
]

About this extraction

This page contains the full source code of the ruby-conferences/ruby-conferences.github.io GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 45 files (489.7 KB), approximately 177.2k tokens, and a symbol index with 94 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!