Skip to content

Commit adea862

Browse files
authored
Merge pull request #35 from Better-Conversations/flight-plans-v3.1.2
Flight plans v3.1.2
2 parents 68b10ca + d93bff3 commit adea862

File tree

8 files changed

+100
-73
lines changed

8 files changed

+100
-73
lines changed

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3.0

Gemfile.lock

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
GIT
22
remote: https://github.com/Better-Conversations/bcf-flightplans-dsl.git
3-
revision: ff6cd1469e46e4ef3dd242ea860e6a58f0cfff26
3+
revision: 8ca39cbd65dc6cfcc18783d4d1abed108edd6dfa
44
specs:
5-
bcf-flightplans (0.13.1)
5+
bcf-flightplans (0.14.0)
66
dry-struct (~> 1.6)
77
redcarpet (~> 3.6)
88
rspec (~> 3)
@@ -13,8 +13,9 @@ GEM
1313
specs:
1414
bigdecimal (3.1.9)
1515
concurrent-ruby (1.3.5)
16-
csv (3.3.0)
17-
debug (1.9.2)
16+
csv (3.3.3)
17+
date (3.4.1)
18+
debug (1.10.0)
1819
irb (~> 1.10)
1920
reline (>= 0.3.8)
2021
diff-lcs (1.6.1)
@@ -40,36 +41,41 @@ GEM
4041
dry-inflector (~> 1.0)
4142
dry-logic (~> 1.4)
4243
zeitwerk (~> 2.6)
43-
ffi (1.17.0)
44-
ffi (1.17.0-aarch64-linux-gnu)
44+
ffi (1.17.1)
45+
ffi (1.17.1-aarch64-linux-gnu)
4546
ffi-aspell (1.1.0)
4647
ffi
4748
filewatcher (2.1.0)
4849
module_methods (~> 0.1.0)
49-
httparty (0.22.0)
50+
httparty (0.23.1)
5051
csv
5152
mini_mime (>= 1.0.0)
5253
multi_xml (>= 0.5.2)
5354
ice_nine (0.11.2)
54-
io-console (0.7.2)
55-
irb (1.14.0)
55+
io-console (0.8.0)
56+
irb (1.15.2)
57+
pp (>= 0.6.0)
5658
rdoc (>= 4.0.0)
5759
reline (>= 0.4.2)
58-
language_server-protocol (3.17.0.3)
60+
language_server-protocol (3.17.0.4)
5961
logger (1.7.0)
6062
mini_mime (1.1.5)
6163
module_methods (0.1.0)
6264
multi_xml (0.7.1)
6365
bigdecimal (~> 3.1)
64-
prism (0.30.0)
65-
psych (5.1.2)
66+
pp (0.6.2)
67+
prettyprint
68+
prettyprint (0.2.0)
69+
prism (1.4.0)
70+
psych (5.2.3)
71+
date
6672
stringio
67-
rbs (3.5.3)
73+
rbs (3.9.2)
6874
logger
69-
rdoc (6.7.0)
75+
rdoc (6.13.1)
7076
psych (>= 4.0.0)
7177
redcarpet (3.6.1)
72-
reline (0.5.9)
78+
reline (0.6.1)
7379
io-console (~> 0.5)
7480
rspec (3.13.0)
7581
rspec-core (~> 3.13.0)
@@ -84,13 +90,13 @@ GEM
8490
diff-lcs (>= 1.2.0, < 2.0)
8591
rspec-support (~> 3.13.0)
8692
rspec-support (3.13.2)
87-
ruby-lsp (0.17.15)
93+
ruby-lsp (0.23.13)
8894
language_server-protocol (~> 3.17.0)
89-
prism (>= 0.29.0, < 0.31)
95+
prism (>= 1.2, < 2.0)
9096
rbs (>= 3, < 4)
9197
sorbet-runtime (>= 0.5.10782)
92-
sorbet-runtime (0.5.11537)
93-
stringio (3.1.1)
98+
sorbet-runtime (0.5.11993)
99+
stringio (3.1.6)
94100
tilt (2.6.0)
95101
zeitwerk (2.7.2)
96102

common_blocks.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def initialize(facilitator_name, next_module_name, length:)
172172
facilitator do
173173
spoken "If you have any further questions or anything you'd like to share, we will stay on the Zoom call for a few minutes now."
174174
spoken "Otherwise, we will see you next time on the next module which will cover #{next_module_name}."
175-
instruction "Handover to Sponsor"
175+
handover
176176
end
177177

178178
producer do

module_1.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186

187187
spoken "Make a note of this label and number if it helps you. There's also a space in the handbook to write this down."
188188

189-
instruction "Hand over to Fx1 for State and Traffic Light model"
189+
handover "for State and Traffic Light model"
190190
end
191191

192192
producer do

module_2.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,7 @@
274274
spoken_exact "What impact might making assumptions have on your conversations?"
275275
spoken "Who’s got something they want to share?"
276276

277-
instruction "Facilitate brief discussion suggesting people can also put their answers in the chat." \
278-
"Aim for 2-3 examples, with one from the chat."
277+
instruction "Facilitate brief discussion suggesting people can also put their answers in the chat. Aim for 2-3 examples, with one from the chat."
279278

280279
handover "for discussion on assumptions and feelings."
281280
end

module_3.rb

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@
114114
- _Psychobiology_ (for example, your state, your personal values)
115115
- _Socioculture_ (for example, relationships, group behaviour, cultural values and beliefs)
116116
- _History_ (for example, what’s happened in the past, what’s documented or recorded)
117+
- _Time_ (for example, time zone, whether it’s day or night)
117118
- _Environment_ (for example, what’s going in the physical space you are in)
118-
- _Time-based_ (for example, time zone, whether it’s day or night)
119119
- _Method_ (for example, the way you are communicating, the process for communicating)
120120
TYPST_SPOKEN
121121

122122
spoken <<~MD
123123
Some examples of your context we have already covered so far in this course are:
124-
- Asking where in the world you are and what time zone you are in (environment, culture and time-based context)
124+
- Asking where in the world you are and what time zone you are in (environment, culture and time)
125125
- Asking how you are feeling, when we do the state check-in (psychobiology)
126126
MD
127127

@@ -155,10 +155,10 @@
155155
"Continue the conversation and ask more questions to improve your understanding of the other person’s context."
156156
spoken_exact <<~MD
157157
Starter questions:
158-
- Psychobiology: What would you like to have happen after attending this course?
159-
- History: What have you learned so far on this course?
160-
- Time: What were you doing before you came to the course today? What else do you have on today?
161-
- Environment: Where are you in the world?"
158+
- What would you like to have happen after attending this course? (psychobiology)
159+
- What have you learned so far on this course? (history)
160+
- What were you doing before you came to the course today? What else do you have on today? (time)
161+
- Where are you in the world? (environment)
162162
MD
163163

164164
spoken_exact "Manage the time so everyone gets a chance to try out one of the starter questions. "
@@ -181,10 +181,10 @@
181181
182182
Starter questions:
183183
184-
- Psychobiology: What would you like to have happen after attending this course?
185-
- History: What have you learned so far on this course?
186-
- Time: What were you doing before you came to the course today? What else do you have on today?
187-
- Environment: Where are you in the world?
184+
- What would you like to have happen after attending this course? (psychobiology)
185+
- What have you learned so far on this course? (history)
186+
- What were you doing before you came to the course today? What else do you have on today? (time)
187+
- Where are you in the world? (environment)
188188
189189
Manage the time so everyone gets a chance to try out one of the starter questions.
190190
CHAT
@@ -211,8 +211,7 @@
211211
spoken_exact "What happened when you knew more about the other person’s context "
212212
spoken_exact "What was it like for you, when you were asked about your context?"
213213

214-
instruction "Facilitate brief discussion suggesting people can also put their answers in the chat." \
215-
"Aim for 2-3 examples, with one from the chat."
214+
instruction "Facilitate brief discussion suggesting people can also put their answers in the chat. Aim for 2-3 examples, with one from the chat."
216215

217216
handover "for exercise on improving conversations"
218217
end
@@ -239,7 +238,7 @@
239238
facilitator do
240239
spoken "We are going to put you in breakouts again for 6 minutes to talk about this."
241240
spoken_exact "We are going to consider improving a conversation using the 6 elements of context: "
242-
spoken_exact "Psychobiology, Socioculture, History, Environment, Time, and Method."
241+
spoken_exact "Psychobiology, Socioculture, History, Time, Environment, and Method."
243242
spoken "Remember that context helps determine the assumptions we make."
244243
spoken_exact "Think about a conversation you'd like to be better."
245244
spoken "What you would like to have happen in that conversation?"
@@ -263,7 +262,7 @@
263262
chat <<~CHAT
264263
We are going to consider improving a conversation using the 6 elements of context:
265264
266-
Psychobiology, Socioculture, History, Environment, Time, and Method.
265+
Psychobiology, Socioculture, History, Time, Environment, and Method.
267266
268267
Think about a conversation you'd like to be better:
269268
@@ -323,7 +322,7 @@
323322
length 5
324323

325324
facilitator do
326-
spoken "Just to recap, there are six elements to context that affect each of us in our conversations: Psychobiology, Socioculture, History, Environment, Time, and Method."
325+
spoken "Just to recap, there are six elements to context that affect each of us in our conversations: Psychobiology, Socioculture, History, Time, Environment, and Method."
327326
spoken "State is an important aspect of psychobiological context."
328327
spoken "Context gives us a way of making meaning and understanding a situation. It helps determine the assumptions we make."
329328

@@ -341,7 +340,7 @@
341340
instruction "Copy in chat (when you hear facilitator say these):"
342341

343342
chat <<~CHAT
344-
6 elements of context: Psychobiology, Socioculture, History, Environment, Time, and Method.
343+
6 elements of context: Psychobiology, Socioculture, History, Time, Environment, and Method.
345344
346345
Thinking about what you know about state, assumptions and context:
347346

module_5.rb

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@
306306
spoken_exact "What's important here? For you and for them?"
307307
spoken_exact "What would you like to have happen? Then what happens?"
308308
spoken_exact "What will you say or do?"
309-
spoken_exact "What might the impact be?"
309+
spoken_exact "What might the impact be on them?"
310310

311311
instruction "Let's see how this works on the conversation model."
312312

@@ -352,13 +352,13 @@
352352
- What's important here? For you and for them?
353353
- What would you like to have happen? Then what happens?
354354
- What will you say or do?
355-
- What might the impact be?
355+
- What might the impact be on them?
356356
357357
Manage the time so everyone gets a chance to practice these questions.
358358
MD
359359

360360
spoken "Please share only what you feel comfortable sharing in the group when we come back into the main room."
361-
spoken "When you return, we will briefly share what we noticed about moving around the loop."
361+
spoken "When you return, we will briefly share the impact of using these questions to prepare for a conversation."
362362
spoken "Any questions before we send you in?"
363363
end
364364

@@ -371,7 +371,7 @@
371371
- What's important here? For you and for them?
372372
- What would you like to have happen? Then what happens?
373373
- What will you say or do?
374-
- What might the impact be?
374+
- What might the impact be on them?
375375
376376
Manage the time so everyone gets a chance to practice these questions.
377377
CHAT
@@ -395,9 +395,8 @@
395395

396396
facilitator do
397397

398-
spoken "Let’s find out what you noticed. We are going to focus on the _process_ you just used, focusing on outcomes, intentions and impact."
399-
spoken_exact "What did you notice about moving from outcome to intention?"
400-
spoken_exact "What did you notice about moving from intention to impact?"
398+
spoken "Let’s find out what you noticed. We are going to focus on the _process_ you just used."
399+
spoken_exact "What was the impact of using these questions to prepare for a conversation?"
401400

402401
instruction <<~MD
403402
Facilitate brief discussion suggesting people can also put their answers in the chat. Aim for 2-3 examples, with one from the chat.
@@ -417,8 +416,7 @@
417416
chat <<~CHAT
418417
Thinking about the process you just used:
419418
420-
- What did you notice about moving from outcome to intention?
421-
- What did you notice about moving from intention to impact?
419+
- What was the impact of using these questions to prepare for a conversation?
422420
CHAT
423421
end
424422
end

0 commit comments

Comments
 (0)