-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathmeetup_groups.yml
More file actions
1138 lines (880 loc) · 20.9 KB
/
meetup_groups.yml
File metadata and controls
1138 lines (880 loc) · 20.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
- 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: 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: 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: 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: kharkiv-rb
# name:
# service: meetupdotcom
- id: krakow-ruby-users-group
name: Krakow Ruby Users Group (KRUG)
service: meetupdotcom
- 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: meetup-group-xwgucjde
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: 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: 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
exclude:
- Ruby Community Conference
remove:
- (PLRUG)
- id: portland-ruby-brigade
name: Portland Ruby Brigade
service: meetupdotcom
# - id: poznanrug
# name:
# service: meetupdotcom
- 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:
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:
# 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
- 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: 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: 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
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
- 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