opentok 0.0.1 → 0.0.2
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/CHANGES +11 -0
- data/LICENCE +19 -0
- data/README.textile +43 -0
- data/doc/CHANGES.html +128 -0
- data/doc/Gemfile.html +114 -0
- data/doc/Hash.html +228 -0
- data/doc/LICENCE.html +133 -0
- data/doc/Net.html +167 -0
- data/doc/Net/HTTP.html +260 -0
- data/doc/OpenTok.html +173 -0
- data/doc/OpenTok/OpenTokException.html +172 -0
- data/doc/OpenTok/OpenTokSDK.html +520 -0
- data/doc/OpenTok/RoleConstants.html +190 -0
- data/doc/OpenTok/Session.html +284 -0
- data/doc/OpenTok/SessionPropertyConstants.html +195 -0
- data/doc/Rakefile.html +111 -0
- data/doc/created.rid +13 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +100 -0
- data/doc/js/darkfish.js +116 -0
- data/doc/js/jquery.js +32 -0
- data/doc/js/quicksearch.js +114 -0
- data/doc/js/thickbox-compressed.js +10 -0
- data/doc/lib/monkey_patches_rb.html +52 -0
- data/doc/lib/open_tok/exceptions_rb.html +52 -0
- data/doc/lib/open_tok/open_tok_sdk_rb.html +64 -0
- data/doc/lib/open_tok/session_rb.html +52 -0
- data/doc/lib/open_tok/version_rb.html +52 -0
- data/doc/lib/opentok_rb.html +70 -0
- data/doc/rdoc.css +706 -0
- data/doc/spec/opentok_spec_rb.html +54 -0
- data/doc/spec/spec_helper_rb.html +54 -0
- data/lib/monkey_patches.rb +34 -0
- data/lib/open_tok/exceptions.rb +16 -0
- data/lib/open_tok/open_tok_sdk.rb +147 -0
- data/lib/open_tok/session.rb +25 -0
- data/lib/open_tok/version.rb +3 -0
- data/lib/opentok.rb +7 -14
- data/opentok.gemspec +2 -2
- data/spec/opentok_spec.rb +64 -0
- data/spec/spec_helper.rb +2 -0
- metadata +68 -12
- data/lib/opentok/version.rb +0 -3
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentok
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Karmen Blake
|
@@ -15,11 +15,10 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
19
|
-
default_executable:
|
18
|
+
date: 2011-04-20 00:00:00 Z
|
20
19
|
dependencies: []
|
21
20
|
|
22
|
-
description: OpenTok gem
|
21
|
+
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)
|
23
22
|
email:
|
24
23
|
- karmenblake@gmail.com
|
25
24
|
executables: []
|
@@ -30,12 +29,68 @@ extra_rdoc_files: []
|
|
30
29
|
|
31
30
|
files:
|
32
31
|
- .gitignore
|
32
|
+
- CHANGES
|
33
33
|
- Gemfile
|
34
|
+
- LICENCE
|
35
|
+
- README.textile
|
34
36
|
- Rakefile
|
37
|
+
- doc/CHANGES.html
|
38
|
+
- doc/Gemfile.html
|
39
|
+
- doc/Hash.html
|
40
|
+
- doc/LICENCE.html
|
41
|
+
- doc/Net.html
|
42
|
+
- doc/Net/HTTP.html
|
43
|
+
- doc/OpenTok.html
|
44
|
+
- doc/OpenTok/OpenTokException.html
|
45
|
+
- doc/OpenTok/OpenTokSDK.html
|
46
|
+
- doc/OpenTok/RoleConstants.html
|
47
|
+
- doc/OpenTok/Session.html
|
48
|
+
- doc/OpenTok/SessionPropertyConstants.html
|
49
|
+
- doc/Rakefile.html
|
50
|
+
- doc/created.rid
|
51
|
+
- doc/images/brick.png
|
52
|
+
- doc/images/brick_link.png
|
53
|
+
- doc/images/bug.png
|
54
|
+
- doc/images/bullet_black.png
|
55
|
+
- doc/images/bullet_toggle_minus.png
|
56
|
+
- doc/images/bullet_toggle_plus.png
|
57
|
+
- doc/images/date.png
|
58
|
+
- doc/images/find.png
|
59
|
+
- doc/images/loadingAnimation.gif
|
60
|
+
- doc/images/macFFBgHack.png
|
61
|
+
- doc/images/package.png
|
62
|
+
- doc/images/page_green.png
|
63
|
+
- doc/images/page_white_text.png
|
64
|
+
- doc/images/page_white_width.png
|
65
|
+
- doc/images/plugin.png
|
66
|
+
- doc/images/ruby.png
|
67
|
+
- doc/images/tag_green.png
|
68
|
+
- doc/images/wrench.png
|
69
|
+
- doc/images/wrench_orange.png
|
70
|
+
- doc/images/zoom.png
|
71
|
+
- doc/index.html
|
72
|
+
- doc/js/darkfish.js
|
73
|
+
- doc/js/jquery.js
|
74
|
+
- doc/js/quicksearch.js
|
75
|
+
- doc/js/thickbox-compressed.js
|
76
|
+
- doc/lib/monkey_patches_rb.html
|
77
|
+
- doc/lib/open_tok/exceptions_rb.html
|
78
|
+
- doc/lib/open_tok/open_tok_sdk_rb.html
|
79
|
+
- doc/lib/open_tok/session_rb.html
|
80
|
+
- doc/lib/open_tok/version_rb.html
|
81
|
+
- doc/lib/opentok_rb.html
|
82
|
+
- doc/rdoc.css
|
83
|
+
- doc/spec/opentok_spec_rb.html
|
84
|
+
- doc/spec/spec_helper_rb.html
|
85
|
+
- lib/monkey_patches.rb
|
86
|
+
- lib/open_tok/exceptions.rb
|
87
|
+
- lib/open_tok/open_tok_sdk.rb
|
88
|
+
- lib/open_tok/session.rb
|
89
|
+
- lib/open_tok/version.rb
|
35
90
|
- lib/opentok.rb
|
36
|
-
- lib/opentok/version.rb
|
37
91
|
- opentok.gemspec
|
38
|
-
|
92
|
+
- spec/opentok_spec.rb
|
93
|
+
- spec/spec_helper.rb
|
39
94
|
homepage: ""
|
40
95
|
licenses: []
|
41
96
|
|
@@ -65,9 +120,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
120
|
requirements: []
|
66
121
|
|
67
122
|
rubyforge_project: opentok
|
68
|
-
rubygems_version: 1.
|
123
|
+
rubygems_version: 1.7.2
|
69
124
|
signing_key:
|
70
125
|
specification_version: 3
|
71
126
|
summary: OpenTok gem
|
72
|
-
test_files:
|
73
|
-
|
127
|
+
test_files:
|
128
|
+
- spec/opentok_spec.rb
|
129
|
+
- spec/spec_helper.rb
|
data/lib/opentok/version.rb
DELETED