bigbluebutton-api-ruby 0.1.0.rc1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +1 -1
- data/Gemfile.lock +1 -1
- data/README.rdoc +7 -4
- data/bigbluebutton-api-ruby.gemspec +1 -1
- data/features/support/api_tests/configs.rb +5 -5
- metadata +11 -8
data/CHANGELOG.rdoc
CHANGED
data/Gemfile.lock
CHANGED
data/README.rdoc
CHANGED
@@ -18,11 +18,14 @@ Some details:
|
|
18
18
|
|
19
19
|
== Supported BigBlueButton versions
|
20
20
|
|
21
|
-
|
21
|
+
The current version of this gem supports *all* the following versions of BigBlueButton:
|
22
22
|
|
23
|
-
* 0.8
|
24
|
-
* 0.7
|
25
|
-
|
23
|
+
* 0.8: currently in the beta3 stage.
|
24
|
+
* 0.7: including 0.7, 0.71 and 0.71a.
|
25
|
+
|
26
|
+
Older versions:
|
27
|
+
|
28
|
+
* 0.64: see the branch "api-0.64". The last version with support to 0.64 is {version 0.0.10}[https://github.com/mconf/bigbluebutton-api-ruby/tree/v0.0.10]. It supports both 0.64 and 0.7.
|
26
29
|
|
27
30
|
== Supported ruby versions
|
28
31
|
|
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'bigbluebutton-api-ruby'
|
5
|
-
s.version = '0.1.0
|
5
|
+
s.version = '0.1.0'
|
6
6
|
s.extra_rdoc_files = ['README.rdoc', 'LICENSE', 'LICENSE_003', 'CHANGELOG.rdoc']
|
7
7
|
s.summary = 'Provides an interface to the BigBlueButton web meeting API (https://github.com/mconf/bigbluebutton-api-ruby)'
|
8
8
|
s.description = s.summary
|
@@ -20,7 +20,7 @@ module BigBlueButtonAPITests
|
|
20
20
|
|
21
21
|
def initialize_cfg
|
22
22
|
config_file = File.join(File.dirname(__FILE__), '..', '..', 'config.yml')
|
23
|
-
unless File.exist?
|
23
|
+
unless File.exist?(config_file)
|
24
24
|
throw Exception.new(config_file + " does not exists. Copy the example and configure your server.")
|
25
25
|
end
|
26
26
|
config = YAML.load_file(config_file)
|
@@ -32,12 +32,12 @@ module BigBlueButtonAPITests
|
|
32
32
|
unless self.cfg['servers'].has_key?(ENV['SERVER'])
|
33
33
|
throw Exception.new("Server #{ENV['SERVER']} does not exists in your configuration file.")
|
34
34
|
end
|
35
|
-
|
35
|
+
server = self.cfg['servers'][ENV['SERVER']]
|
36
36
|
else
|
37
|
-
|
37
|
+
server = self.cfg['servers'][self.cfg['servers'].keys.first]
|
38
38
|
end
|
39
|
-
|
40
|
-
|
39
|
+
server['version'] = '0.7' unless server.has_key?('version')
|
40
|
+
server
|
41
41
|
end
|
42
42
|
|
43
43
|
def load
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigbluebutton-api-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Leonardo Crauss Daronco
|
@@ -10,11 +10,11 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2011-11-
|
13
|
+
date: 2011-11-25 00:00:00.000000000Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: xml-simple
|
17
|
-
requirement: &
|
17
|
+
requirement: &83383270 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
version: 1.1.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *83383270
|
26
26
|
description: Provides an interface to the BigBlueButton web meeting API (https://github.com/mconf/bigbluebutton-api-ruby)
|
27
27
|
email:
|
28
28
|
- leonardodaronco@gmail.com
|
@@ -100,13 +100,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
100
100
|
version: '0'
|
101
101
|
segments:
|
102
102
|
- 0
|
103
|
-
hash:
|
103
|
+
hash: -921696703
|
104
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
|
-
- - ! '
|
107
|
+
- - ! '>='
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
109
|
+
version: '0'
|
110
|
+
segments:
|
111
|
+
- 0
|
112
|
+
hash: -921696703
|
110
113
|
requirements: []
|
111
114
|
rubyforge_project:
|
112
115
|
rubygems_version: 1.8.10
|