opentok 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -30,7 +30,7 @@ With the following code, you can generate a valid @session_id@.
30
30
 
31
31
  @opentok = OpenTok::OpenTokSDK.new @api_key, @api_secret
32
32
 
33
- @session_id @opentok.create_session(@host)
33
+ @session_id = @opentok.create_session(@host)
34
34
  </pre>
35
35
 
36
36
  h3. Create tokens
@@ -1,3 +1,3 @@
1
1
  module Opentok
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
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-9a-f]{40}\Z/)
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: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
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-04-20 00:00:00 Z
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.7.2
125
+ rubygems_version: 1.8.3
124
126
  signing_key:
125
127
  specification_version: 3
126
128
  summary: OpenTok gem