opentok 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2ce0a896ef93fac779a7a0772acb81daeca3b82
4
- data.tar.gz: 76c29f78298726db9ccad7f4d9913ee39090c024
3
+ metadata.gz: f35fe580541ec8e9d7e973564f1f694aa9db2f95
4
+ data.tar.gz: 91c5359e1e171ced0b1fb9bf3462ef7dc752ea76
5
5
  SHA512:
6
- metadata.gz: ab5aab9c444ba3e8d34bac8008f14311aca71b9946c4261a85c6b9a11f629620c0b4ef35308be2e2acb3a016638841f1758b0fae4c16ccadefeea06a80e5033f
7
- data.tar.gz: 6764f9f49a31380a2f3ada27c8c5c4baded6502831673248c394857f46c90770f0f06418ba4e50a3b1fab13e8e7fe5c816591aa8af572ca62a0a2874c9b71e1f
6
+ metadata.gz: 8b2f5014c9569169af71b3ae7c5ac60c05a9471cc98b178769ec3f1d2617c9db488fdcd36699984c7afa2213f7b947afe9faf43d3411a1d708d4951e7cf19081
7
+ data.tar.gz: 1fb580dc6f65cb050311c2f7dd7743851f3472f517714614c5643030b2b386f8f07ed4a8ebb59614d28d9827824b7f0c77cf8fb3239471945f6dbdfb88f95706
data/README.md CHANGED
@@ -32,7 +32,7 @@ $ bundle install
32
32
  ## RubyGems:
33
33
 
34
34
  ```
35
- $ gem install opentok -v 2.2.1
35
+ $ gem install opentok -v 2.2.2
36
36
  ```
37
37
 
38
38
  # Usage
@@ -56,14 +56,14 @@ and specifying a location hint. The `session_id` method of the returned `OpenTok
56
56
  instance is useful to get a sessionId that can be saved to a persistent store (e.g. database).
57
57
 
58
58
  ```ruby
59
- # Just a plain Session:
59
+ # Create a session that will attempt to transmit streams directly between clients.
60
+ # If clients cannot connect, the session uses the OpenTok TURN server:
60
61
  session = opentok.create_session
61
62
 
62
- # The session will attempt to transmit streams directly between clients.
63
- # If clients cannot connect, the session uses the OpenTok TURN server:
64
- session = opentok.create_session :media_mode => :relayed
63
+ # A session that will use the OpenTok Media Server:
64
+ session = opentok.create_session :media_mode => :routed
65
65
 
66
- # A Session with a location hint:
66
+ # A session with a location hint:
67
67
  session = opentok.create_session :location => '12.34.56.78'
68
68
 
69
69
  # Store this sessionId in the database for later use:
data/doc/OpenTok.html CHANGED
@@ -402,7 +402,7 @@ cannot be updated once it is set.</p>
402
402
  </div>
403
403
 
404
404
  <div id="footer">
405
- Generated on Tue May 27 13:24:51 2014 by
405
+ Generated on Mon Jun 16 23:06:55 2014 by
406
406
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
407
407
  0.8.7.4 (ruby-1.9.3).
408
408
  </div>
@@ -1311,7 +1311,7 @@ have disconnected from the session being archived.</p>
1311
1311
  </div>
1312
1312
 
1313
1313
  <div id="footer">
1314
- Generated on Tue May 27 13:24:51 2014 by
1314
+ Generated on Mon Jun 16 23:06:55 2014 by
1315
1315
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1316
1316
  0.8.7.4 (ruby-1.9.3).
1317
1317
  </div>
@@ -207,7 +207,7 @@
207
207
  </div>
208
208
 
209
209
  <div id="footer">
210
- Generated on Tue May 27 13:24:51 2014 by
210
+ Generated on Mon Jun 16 23:06:55 2014 by
211
211
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
212
212
  0.8.7.4 (ruby-1.9.3).
213
213
  </div>
@@ -1019,7 +1019,7 @@ have disconnected from the session being archived.</p>
1019
1019
  </div>
1020
1020
 
1021
1021
  <div id="footer">
1022
- Generated on Tue May 27 13:24:51 2014 by
1022
+ Generated on Mon Jun 16 23:06:55 2014 by
1023
1023
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1024
1024
  0.8.7.4 (ruby-1.9.3).
1025
1025
  </div>
@@ -474,7 +474,12 @@ href="https://dashboard.tokbox.com/projects">dashboard.tokbox.com/projects</a>).
474
474
  &mdash; <div class='inline'>
475
475
  <p>Determines whether the session will transmit streams the using OpenTok
476
476
  Media Router (<tt>:routed</tt>) or not (<tt>:relayed</tt>). By default,
477
- sessions use the OpenTok Media Router.</p>
477
+ this property is set to <tt>:relayed</tt>.</p>
478
+
479
+ <p>With the <tt>mediaMode</tt> property set to <tt>:relayed</tt>, the session
480
+ will attempt to transmit streams directly between clients. If clients
481
+ cannot connect due to firewall restrictions, the session uses the OpenTok
482
+ TURN server to relay audio-video streams.</p>
478
483
 
479
484
  <p>With the <tt>mediaMode</tt> property set to <tt>:routed</tt>, the session
480
485
  will use the <a href="http://tokbox.com/#multiparty" target="_parent" title="OpenTok Media Router">OpenTok Media Router</a>. The
@@ -497,11 +502,6 @@ video returns.</p>
497
502
  sessions.</p>
498
503
  </li></ul>
499
504
 
500
- <p>With the <tt>mediaMode</tt> property set to <tt>:relayed</tt>, the session
501
- will attempt to transmit streams directly between clients. If clients
502
- cannot connect due to firewall restrictions, the session uses the OpenTok
503
- TURN server to relay audio-video streams.</p>
504
-
505
505
  <p>You will be billed for streamed minutes if you use the OpenTok Media Router
506
506
  or if the session uses the OpenTok TURN server to relay streams. For
507
507
  information on pricing, see the <a href="http://www.tokbox.com/pricing" target="_parent" title="OpenTok pricing page">OpenTok pricing page</a>.</p>
@@ -950,7 +950,12 @@ cannot be updated once it is set.</p>
950
950
  </span> <span class='comment'>#
951
951
  </span> <span class='comment'># @option opts [String] :media_mode Determines whether the session will transmit streams the
952
952
  </span> <span class='comment'># using OpenTok Media Router (&lt;code&gt;:routed&lt;/code&gt;) or not (&lt;code&gt;:relayed&lt;/code&gt;).
953
- </span> <span class='comment'># By default, sessions use the OpenTok Media Router.
953
+ </span> <span class='comment'># By default, this property is set to &lt;code&gt;:relayed&lt;/code&gt;.
954
+ </span> <span class='comment'>#
955
+ </span> <span class='comment'># With the &lt;code&gt;mediaMode&lt;/code&gt; property set to &lt;code&gt;:relayed&lt;/code&gt;, the session
956
+ </span> <span class='comment'># will attempt to transmit streams directly between clients. If clients cannot connect due to
957
+ </span> <span class='comment'># firewall restrictions, the session uses the OpenTok TURN server to relay audio-video
958
+ </span> <span class='comment'># streams.
954
959
  </span> <span class='comment'>#
955
960
  </span> <span class='comment'># With the &lt;code&gt;mediaMode&lt;/code&gt; property set to &lt;code&gt;:routed&lt;/code&gt;, the session
956
961
  </span> <span class='comment'># will use the {http://tokbox.com/#multiparty OpenTok Media Router}.
@@ -969,11 +974,6 @@ cannot be updated once it is set.</p>
969
974
  </span> <span class='comment'># * The OpenTok Media Router supports the {http://tokbox.com/platform/archiving archiving}
970
975
  </span> <span class='comment'># feature, which lets you record, save, and retrieve OpenTok sessions.
971
976
  </span> <span class='comment'>#
972
- </span> <span class='comment'># With the &lt;code&gt;mediaMode&lt;/code&gt; property set to &lt;code&gt;:relayed&lt;/code&gt;, the session
973
- </span> <span class='comment'># will attempt to transmit streams directly between clients. If clients cannot connect due to
974
- </span> <span class='comment'># firewall restrictions, the session uses the OpenTok TURN server to relay audio-video
975
- </span> <span class='comment'># streams.
976
- </span> <span class='comment'>#
977
977
  </span> <span class='comment'># You will be billed for streamed minutes if you use the OpenTok Media Router or if the
978
978
  </span> <span class='comment'># session uses the OpenTok TURN server to relay streams. For information on pricing, see the
979
979
  </span> <span class='comment'># {http://www.tokbox.com/pricing OpenTok pricing page}.
@@ -1037,7 +1037,7 @@ cannot be updated once it is set.</p>
1037
1037
  </div>
1038
1038
 
1039
1039
  <div id="footer">
1040
- Generated on Tue May 27 13:24:51 2014 by
1040
+ Generated on Mon Jun 16 23:06:55 2014 by
1041
1041
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1042
1042
  0.8.7.4 (ruby-1.9.3).
1043
1043
  </div>
@@ -133,7 +133,7 @@
133
133
  </div>
134
134
 
135
135
  <div id="footer">
136
- Generated on Tue May 27 13:24:51 2014 by
136
+ Generated on Mon Jun 16 23:06:55 2014 by
137
137
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
138
  0.8.7.4 (ruby-1.9.3).
139
139
  </div>
@@ -134,7 +134,7 @@ OpenTok API key or secret.</p>
134
134
  </div>
135
135
 
136
136
  <div id="footer">
137
- Generated on Tue May 27 13:24:51 2014 by
137
+ Generated on Mon Jun 16 23:06:55 2014 by
138
138
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
139
139
  0.8.7.4 (ruby-1.9.3).
140
140
  </div>
@@ -129,7 +129,7 @@
129
129
  </div>
130
130
 
131
131
  <div id="footer">
132
- Generated on Tue May 27 13:24:51 2014 by
132
+ Generated on Mon Jun 16 23:06:55 2014 by
133
133
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
134
134
  0.8.7.4 (ruby-1.9.3).
135
135
  </div>
@@ -656,7 +656,7 @@ cannot be updated once it is set.</p>
656
656
  </div>
657
657
 
658
658
  <div id="footer">
659
- Generated on Tue May 27 13:24:51 2014 by
659
+ Generated on Mon Jun 16 23:06:55 2014 by
660
660
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
661
661
  0.8.7.4 (ruby-1.9.3).
662
662
  </div>
data/doc/_index.html CHANGED
@@ -173,7 +173,7 @@
173
173
  </div>
174
174
 
175
175
  <div id="footer">
176
- Generated on Tue May 27 13:24:51 2014 by
176
+ Generated on Mon Jun 16 23:06:55 2014 by
177
177
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
178
178
  0.8.7.4 (ruby-1.9.3).
179
179
  </div>
data/doc/file.README.html CHANGED
@@ -78,7 +78,7 @@
78
78
  </div></div>
79
79
 
80
80
  <div id="footer">
81
- Generated on Tue May 27 13:24:51 2014 by
81
+ Generated on Mon Jun 16 23:06:55 2014 by
82
82
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
83
83
  0.8.7.4 (ruby-1.9.3).
84
84
  </div>
data/doc/index.html CHANGED
@@ -78,7 +78,7 @@
78
78
  </div></div>
79
79
 
80
80
  <div id="footer">
81
- Generated on Tue May 27 13:24:51 2014 by
81
+ Generated on Mon Jun 16 23:06:55 2014 by
82
82
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
83
83
  0.8.7.4 (ruby-1.9.3).
84
84
  </div>
@@ -103,7 +103,7 @@
103
103
  </div>
104
104
 
105
105
  <div id="footer">
106
- Generated on Tue May 27 13:24:51 2014 by
106
+ Generated on Mon Jun 16 23:06:55 2014 by
107
107
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
108
108
  0.8.7.4 (ruby-1.9.3).
109
109
  </div>
@@ -94,7 +94,12 @@ module OpenTok
94
94
  #
95
95
  # @option opts [String] :media_mode Determines whether the session will transmit streams the
96
96
  # using OpenTok Media Router (<code>:routed</code>) or not (<code>:relayed</code>).
97
- # By default, sessions use the OpenTok Media Router.
97
+ # By default, this property is set to <code>:relayed</code>.
98
+ #
99
+ # With the <code>mediaMode</code> property set to <code>:relayed</code>, the session
100
+ # will attempt to transmit streams directly between clients. If clients cannot connect due to
101
+ # firewall restrictions, the session uses the OpenTok TURN server to relay audio-video
102
+ # streams.
98
103
  #
99
104
  # With the <code>mediaMode</code> property set to <code>:routed</code>, the session
100
105
  # will use the {http://tokbox.com/#multiparty OpenTok Media Router}.
@@ -113,11 +118,6 @@ module OpenTok
113
118
  # * The OpenTok Media Router supports the {http://tokbox.com/platform/archiving archiving}
114
119
  # feature, which lets you record, save, and retrieve OpenTok sessions.
115
120
  #
116
- # With the <code>mediaMode</code> property set to <code>:relayed</code>, the session
117
- # will attempt to transmit streams directly between clients. If clients cannot connect due to
118
- # firewall restrictions, the session uses the OpenTok TURN server to relay audio-video
119
- # streams.
120
- #
121
121
  # You will be billed for streamed minutes if you use the OpenTok Media Router or if the
122
122
  # session uses the OpenTok TURN server to relay streams. For information on pricing, see the
123
123
  # {http://www.tokbox.com/pricing OpenTok pricing page}.
@@ -144,11 +144,11 @@ module OpenTok
144
144
  # anything other than :relayed sets the REST param to "disabled", in which case we force
145
145
  # opts to be :routed. if we were more strict we could raise an error when the value isn't
146
146
  # either :relayed or :routed
147
- if params.delete(:media_mode) == :relayed
148
- params["p2p.preference"] = "enabled"
149
- else
147
+ if params.delete(:media_mode) == :routed
150
148
  params["p2p.preference"] = "disabled"
151
- opts[:media_mode] = :routed
149
+ else
150
+ params["p2p.preference"] = "enabled"
151
+ opts[:media_mode] = :relayed
152
152
  end
153
153
  # location is optional, but it has to be an IP address if specified at all
154
154
  unless params[:location].nil?
@@ -65,7 +65,7 @@ module OpenTok
65
65
  # @private
66
66
  def initialize(api_key, api_secret, session_id, opts={})
67
67
  @api_key, @api_secret, @session_id = api_key, api_secret, session_id
68
- @media_mode, @location = opts.fetch(:media_mode, :routed), opts[:location]
68
+ @media_mode, @location = opts.fetch(:media_mode, :relayed), opts[:location]
69
69
  end
70
70
 
71
71
  # @private
@@ -1,4 +1,4 @@
1
1
  module OpenTok
2
2
  # @private
3
- VERSION = '2.2.1'
3
+ VERSION = '2.2.2'
4
4
  end
@@ -7,7 +7,7 @@ class ArchivingSample < Sinatra::Base
7
7
 
8
8
  set :api_key, ENV['API_KEY']
9
9
  set :opentok, OpenTok::OpenTok.new(api_key, ENV['API_SECRET'])
10
- set :session, opentok.create_session
10
+ set :session, opentok.create_session :media_mode => :routed
11
11
  set :erb, :layout => :layout
12
12
 
13
13
  get '/' do
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: https://api.opentok.com/session/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: p2p.preference=disabled
8
+ string: p2p.preference=enabled
9
9
  headers:
10
10
  X-Tb-Partner-Auth:
11
11
  - 123456:1234567890abcdef1234567890abcdef1234567890
@@ -34,6 +34,6 @@ http_interactions:
34
34
  encoding: UTF-8
35
35
  string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><sessions><Session><session_id>1_MX4xMjM0NTZ-fk1vbiBNYXIgMTcgMDA6NDE6MzEgUERUIDIwMTR-MC42ODM3ODk1MzQ0OTQyODA4fg</session_id><partner_id>123456</partner_id><create_dt>Mon
36
36
  Mar 17 00:41:31 PDT 2014</create_dt></Session></sessions>
37
- http_version:
37
+ http_version:
38
38
  recorded_at: Mon, 17 Mar 2014 07:41:30 GMT
39
39
  recorded_with: VCR 2.8.0
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: https://api.opentok.com/session/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: p2p.preference=disabled
8
+ string: p2p.preference=enabled
9
9
  headers:
10
10
  X-Tb-Partner-Auth:
11
11
  - 123456:1234567890abcdef1234567890abcdef1234567890
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: https://api.opentok.com/session/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: location=12.34.56.78&p2p.preference=disabled
8
+ string: location=12.34.56.78&p2p.preference=enabled
9
9
  headers:
10
10
  X-Tb-Partner-Auth:
11
11
  - 123456:1234567890abcdef1234567890abcdef1234567890
@@ -34,6 +34,6 @@ http_interactions:
34
34
  encoding: UTF-8
35
35
  string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><sessions><Session><session_id>1_MX4xMjM0NTZ-MTIuMzQuNTYuNzh-TW9uIE1hciAxNyAwMTo0ODo1NSBQRFQgMjAxNH4wLjM0MTM0MzE0MDIyOTU4Mjh-</session_id><partner_id>123456</partner_id><create_dt>Mon
36
36
  Mar 17 01:48:55 PDT 2014</create_dt></Session></sessions>
37
- http_version:
37
+ http_version:
38
38
  recorded_at: Mon, 17 Mar 2014 08:48:54 GMT
39
39
  recorded_with: VCR 2.8.0
@@ -37,7 +37,7 @@ describe OpenTok::OpenTok do
37
37
  expect(session).to be_an_instance_of OpenTok::Session
38
38
  # TODO: do we need to be any more specific about what a valid session_id looks like?
39
39
  expect(session.session_id).to be_an_instance_of String
40
- expect(session.media_mode).to eq :routed
40
+ expect(session.media_mode).to eq :relayed
41
41
  expect(session.location).to eq nil
42
42
  end
43
43
 
@@ -61,7 +61,7 @@ describe OpenTok::OpenTok do
61
61
  session = opentok.create_session :location => location
62
62
  expect(session).to be_an_instance_of OpenTok::Session
63
63
  expect(session.session_id).to be_an_instance_of String
64
- expect(session.media_mode).to eq :routed
64
+ expect(session.media_mode).to eq :relayed
65
65
  expect(session.location).to eq location
66
66
  end
67
67
 
@@ -81,11 +81,11 @@ describe OpenTok::OpenTok do
81
81
  expect(session.location).to eq location
82
82
  end
83
83
 
84
- it "creates routed media sessions for invalid media modes", :vcr => { :erb => { :version => OpenTok::VERSION } } do
84
+ it "creates relayed media sessions for invalid media modes", :vcr => { :erb => { :version => OpenTok::VERSION } } do
85
85
  session = opentok.create_session :media_mode => :blah
86
86
  expect(session).to be_an_instance_of OpenTok::Session
87
87
  expect(session.session_id).to be_an_instance_of String
88
- expect(session.media_mode).to eq :routed
88
+ expect(session.media_mode).to eq :relayed
89
89
  expect(session.location).to eq nil
90
90
  end
91
91
 
@@ -26,8 +26,8 @@ describe OpenTok::Session do
26
26
  it "should be represented by session_id when coerced to a string" do
27
27
  expect(session.to_s).to eq session_id
28
28
  end
29
- it "should have the default media mode of routed" do
30
- expect(session.media_mode).to eq :routed
29
+ it "should have the default media mode of relayed" do
30
+ expect(session.media_mode).to eq :relayed
31
31
  end
32
32
  it "should not have a location value" do
33
33
  expect(session.location).to eq nil
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentok
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stijn Mathysen
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2014-05-28 00:00:00.000000000 Z
15
+ date: 2014-06-17 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: bundler
@@ -234,9 +234,9 @@ files:
234
234
  - spec/cassettes/OpenTok_Archives/when_many_archives_are_created/should_return_part_of_the_archives_when_using_offset_and_count.yml
235
235
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_default_sessions.yml
236
236
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_relayed_media_sessions.yml
237
+ - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_relayed_media_sessions_for_invalid_media_modes.yml
237
238
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_relayed_media_sessions_with_a_location_hint.yml
238
239
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_routed_media_sessions.yml
239
- - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_routed_media_sessions_for_invalid_media_modes.yml
240
240
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_routed_media_sessions_with_a_location_hint.yml
241
241
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_sessions_with_a_location_hint.yml
242
242
  - spec/matchers/token.rb
@@ -282,9 +282,9 @@ test_files:
282
282
  - spec/cassettes/OpenTok_Archives/when_many_archives_are_created/should_return_part_of_the_archives_when_using_offset_and_count.yml
283
283
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_default_sessions.yml
284
284
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_relayed_media_sessions.yml
285
+ - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_relayed_media_sessions_for_invalid_media_modes.yml
285
286
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_relayed_media_sessions_with_a_location_hint.yml
286
287
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_routed_media_sessions.yml
287
- - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_routed_media_sessions_for_invalid_media_modes.yml
288
288
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_routed_media_sessions_with_a_location_hint.yml
289
289
  - spec/cassettes/OpenTok_OpenTok/when_initialized_properly/_create_session/creates_sessions_with_a_location_hint.yml
290
290
  - spec/matchers/token.rb