File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff 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 )
157157end
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 )
161161end
162162
163163def parse_response ( http , pr )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ author: "LDK PR Review Club contributors"
1313coordinator : " LDK contributor [dunxen](https://github.com/dunxen)"
1414coordinator_irc : " dunxen"
1515description : " A fortnightly review club for LDK PRs"
16- meeting_day : " Tuesday "
16+ meeting_day : " Friday "
1717meeting_location : ' the #review-club channel on <a href="https://discord.gg/5AcknnMfBw">our Discord server</a>'
1818meeting_time : " 18:00 UTC"
1919title : " LDK PR Review Club"
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ rake posts:new -- -p PR_NUMBER -h HOST_USERNAME -d YYYY-MM-DD
9191
9292The ` -p ` (` pr ` ) and ` -h ` (` host ` ) arguments are required. The ` -d ` (` date ` )
9393argument is optional; if no date is passed the meeting date will be set by default
94- to next Tuesday .
94+ to next Friday .
9595
9696The ` host ` argument is your GitHub username.
9797
Original file line number Diff line number Diff 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 >   ; 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 >   ; To help newer contributors
You can’t perform that action at this time.
0 commit comments