opentok 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.textile +1 -1
- data/lib/open_tok/version.rb +1 -1
- data/opentok.gemspec +3 -3
- data/spec/opentok_spec.rb +1 -1
- metadata +8 -6
data/README.textile
CHANGED
data/lib/open_tok/version.rb
CHANGED
data/opentok.gemspec
CHANGED
|
@@ -6,9 +6,9 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.name = "opentok"
|
|
7
7
|
s.version = Opentok::VERSION
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
|
-
s.authors = ["Karmen Blake"]
|
|
10
|
-
s.email = ["karmenblake@gmail.com"]
|
|
11
|
-
s.homepage = ""
|
|
9
|
+
s.authors = ["Stijn Mathysen", "Karmen Blake"]
|
|
10
|
+
s.email = ["stijn@skylight.be", "karmenblake@gmail.com"]
|
|
11
|
+
s.homepage = "https://github.com/stijnster/opentok"
|
|
12
12
|
s.summary = %q{OpenTok gem}
|
|
13
13
|
s.description = %q{OpenTok is a free set of APIs from TokBox that enables websites to weave live group video communication into their online experience. With OpenTok you have the freedom and flexibility to create the most engaging web experience for your users. OpenTok is currently available as a JavaScript and ActionScript 3.0 library. This gem allows you to connect to the API from within Ruby (and Rails)}
|
|
14
14
|
|
data/spec/opentok_spec.rb
CHANGED
|
@@ -25,7 +25,7 @@ describe OpenTok do
|
|
|
25
25
|
opentok = OpenTok::OpenTokSDK.new @api_key, @api_secret
|
|
26
26
|
session = opentok.create_session @host
|
|
27
27
|
|
|
28
|
-
session.to_s.should match(/\A[0-
|
|
28
|
+
session.to_s.should match(/\A[0-9A-z_-]{80}\Z/)
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
it "should raise an exception with an invalid key and secret" do
|
metadata
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opentok
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
|
+
- Stijn Mathysen
|
|
13
14
|
- Karmen Blake
|
|
14
15
|
autorequire:
|
|
15
16
|
bindir: bin
|
|
16
17
|
cert_chain: []
|
|
17
18
|
|
|
18
|
-
date: 2011-
|
|
19
|
+
date: 2011-11-03 00:00:00 Z
|
|
19
20
|
dependencies: []
|
|
20
21
|
|
|
21
22
|
description: OpenTok is a free set of APIs from TokBox that enables websites to weave live group video communication into their online experience. With OpenTok you have the freedom and flexibility to create the most engaging web experience for your users. OpenTok is currently available as a JavaScript and ActionScript 3.0 library. This gem allows you to connect to the API from within Ruby (and Rails)
|
|
22
23
|
email:
|
|
24
|
+
- stijn@skylight.be
|
|
23
25
|
- karmenblake@gmail.com
|
|
24
26
|
executables: []
|
|
25
27
|
|
|
@@ -91,7 +93,7 @@ files:
|
|
|
91
93
|
- opentok.gemspec
|
|
92
94
|
- spec/opentok_spec.rb
|
|
93
95
|
- spec/spec_helper.rb
|
|
94
|
-
homepage:
|
|
96
|
+
homepage: https://github.com/stijnster/opentok
|
|
95
97
|
licenses: []
|
|
96
98
|
|
|
97
99
|
post_install_message:
|
|
@@ -120,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
122
|
requirements: []
|
|
121
123
|
|
|
122
124
|
rubyforge_project: opentok
|
|
123
|
-
rubygems_version: 1.
|
|
125
|
+
rubygems_version: 1.8.3
|
|
124
126
|
signing_key:
|
|
125
127
|
specification_version: 3
|
|
126
128
|
summary: OpenTok gem
|