Skip to content

Commit ce9173c

Browse files
committed
initial commit - ruby gem for opentok
0 parents  commit ce9173c

File tree

6 files changed

+69
-0
lines changed

6 files changed

+69
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.gem
2+
.bundle
3+
Gemfile.lock
4+
pkg/*
5+
.DS_Store

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "http://rubygems.org"
2+
3+
# Specify your gem's dependencies in opentok.gemspec
4+
gemspec

Rakefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require 'bundler'
2+
Bundler::GemHelper.install_tasks

lib/opentok.rb

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# $:.unshift(File.dirname(__FILE__)) unless
2+
# $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3+
4+
=begin
5+
OpenTok Ruby Library
6+
http://www.tokbox.com/
7+
8+
Copyright 2010, TokBox, Inc.
9+
10+
Last modified: 2011-02-17
11+
=end
12+
13+
module OpenTok
14+
15+
require 'rubygems'
16+
require 'net/http'
17+
require 'uri'
18+
require 'digest/md5'
19+
require 'cgi'
20+
#require 'pp' # just for debugging purposes
21+
22+
Net::HTTP.version_1_2 # to make sure version 1.2 is used
23+
24+
module OpenTok
25+
VERSION = "tbrb-v0.91.2011-02-17"
26+
API_URL = "https://staging.tokbox.com/hl"
27+
#Uncomment this line when you launch your app
28+
#API_URL = "https://api.opentok.com/hl";
29+
end
30+
31+
require 'opentok/Exceptions'
32+
require 'opentok/OpenTokSDK'
33+
34+
end

lib/opentok/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Opentok
2+
VERSION = "0.0.1"
3+
end

opentok.gemspec

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "opentok/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "opentok"
7+
s.version = Opentok::VERSION
8+
s.platform = Gem::Platform::RUBY
9+
s.authors = ["Karmen Blake"]
10+
s.email = ["[email protected]"]
11+
s.homepage = ""
12+
s.summary = %q{OpenTok gem}
13+
s.description = %q{OpenTok gem}
14+
15+
s.rubyforge_project = "opentok"
16+
17+
s.files = `git ls-files`.split("\n")
18+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20+
s.require_paths = ["lib"]
21+
end

0 commit comments

Comments
 (0)