Skip to content

Commit 0483695

Browse files
authored
Merge pull request #258 from opentok/dev
Version 4.5.1
2 parents 7da1d06 + 876b027 commit 0483695

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 4.5.1
2+
3+
* Fixes issue with uninitialized constant by adding missing `require` statement [#256](https://github.com/opentok/OpenTok-Ruby-SDK/pull/256)
4+
* Fixes RubyGems info by adding repo link to gemspec [#255](https://github.com/opentok/OpenTok-Ruby-SDK/pull/255)
5+
6+
Thanks to [`@sailor`](https://github.com/sailor) for the contributions! :raised_hands:
7+
18
# 4.5.0
29

310
* Adds support for multiple archives and records feature [#248](https://github.com/opentok/OpenTok-Ruby-SDK/pull/248)

lib/opentok/opentok.rb

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
require "opentok/streams"
1212
require "opentok/signals"
1313
require "opentok/broadcasts"
14+
require "opentok/renders"
1415

1516
module OpenTok
1617
# Contains methods for creating OpenTok sessions and generating tokens. It also includes

lib/opentok/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module OpenTok
22
# @private
3-
VERSION = '4.5.0'
3+
VERSION = '4.5.1'
44
end

opentok.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
1010
spec.description = %q{OpenTok is an API 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. This gem lets you generate sessions and tokens for OpenTok applications. It also includes support for working with OpenTok 2.0 archives. See <http://tokbox.com/opentok/platform> for more details.}
1111
# TODO: this homepage isn't set up just yet
1212
spec.homepage = "https://opentok.github.io/opentok-ruby-sdk"
13+
spec.metadata = { "source_code_uri" => "https://github.com/opentok/OpenTok-Ruby-SDK" }
1314
spec.license = "MIT"
1415

1516
spec.files = `git ls-files -z`.split("\x0")

0 commit comments

Comments
 (0)