Skip to content

Commit 25218f2

Browse files
committed
Change Tuesday/Wednesday -> Friday
1 parent 63025a2 commit 25218f2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Rakefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ namespace :posts do
9393

9494
# Set default value for meeting date if not supplied by user.
9595
unless date
96-
date = next_wednesday.to_s
97-
puts "Date set to next Wednesday: #{date}"
96+
date = next_friday.to_s
97+
puts "Date set to next Friday: #{date}"
9898
end
9999

100100
# Ensure meeting date is valid.
@@ -156,8 +156,8 @@ def valid_iso8601_date?(date_string)
156156
yyyy >= Date.today.year && Date.valid_date?(yyyy, mm, dd)
157157
end
158158

159-
def next_wednesday(date = Date.today, wednesday = 3)
160-
date + ((wednesday - date.wday) % 7)
159+
def next_friday(date = Date.today, friday = 5)
160+
date + ((friday - date.wday) % 7)
161161
end
162162

163163
def parse_response(http, pr)

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ author: "LDK PR Review Club contributors"
1313
coordinator: "LDK contributor [dunxen](https://github.com/dunxen)"
1414
coordinator_irc: "dunxen"
1515
description: "A fortnightly review club for LDK PRs"
16-
meeting_day: "Tuesday"
16+
meeting_day: "Friday"
1717
meeting_location: 'the #review-club channel on <a href="https://discord.gg/5AcknnMfBw">our Discord server</a>'
1818
meeting_time: "18:00 UTC"
1919
title: "LDK PR Review Club"

hosting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ rake posts:new -- -p PR_NUMBER -h HOST_USERNAME -d YYYY-MM-DD
9191

9292
The `-p` (`pr`) and `-h` (`host`) arguments are required. The `-d` (`date`)
9393
argument is optional; if no date is passed the meeting date will be set by default
94-
to next Tuesday.
94+
to next Friday.
9595

9696
The `host` argument is your GitHub username.
9797

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: home
55
### A fortnightly review club for Lightning Dev Kit (LDK) PRs
66

77
<span class="question">What is this?</span> &nbsp;A fortnightly club for reviewing
8-
LDK PRs at **{{ site.meeting_time }} usually every second {{ site.meeting_day }}** in
8+
LDK PRs at **{{ site.meeting_time }} every second {{ site.meeting_day }}** in
99
{{ site.meeting_location }}.
1010

1111
<span class="question">What's it for?</span> &nbsp;To help newer contributors

0 commit comments

Comments
 (0)