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 CHANGED
@@ -1,4 +1,4 @@
1
- === 0.1.0.rc1
1
+ === 0.1.0
2
2
 
3
3
  * Support to BigBlueButton 0.8:
4
4
  * New methods for recordings: get_recordings, publish_recordings, delete_recordings
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bigbluebutton-api-ruby (0.1.0.rc1)
4
+ bigbluebutton-api-ruby (0.1.0)
5
5
  xml-simple (>= 1.1.1)
6
6
 
7
7
  GEM
data/README.rdoc CHANGED
@@ -18,11 +18,14 @@ Some details:
18
18
 
19
19
  == Supported BigBlueButton versions
20
20
 
21
- Currently supports the following versions of BigBlueButton:
21
+ The current version of this gem supports *all* the following versions of BigBlueButton:
22
22
 
23
- * 0.8 (currently in the beta3 stage).
24
- * 0.7 (including 0.7, 0.71 and 0.71a).
25
- * 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].
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.rc1'
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? config_file
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
- srv = self.cfg['servers'][ENV['SERVER']]
35
+ server = self.cfg['servers'][ENV['SERVER']]
36
36
  else
37
- srv = self.cfg['servers'][self.cfg['servers'].keys.first]
37
+ server = self.cfg['servers'][self.cfg['servers'].keys.first]
38
38
  end
39
- srv['bbb_version'] = '0.7' unless srv.has_key?('bbb_version')
40
- srv
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.rc1
5
- prerelease: 6
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-23 00:00:00.000000000Z
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: &84100630 !ruby/object:Gem::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: *84100630
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: 999658801
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: 1.3.1
109
+ version: '0'
110
+ segments:
111
+ - 0
112
+ hash: -921696703
110
113
  requirements: []
111
114
  rubyforge_project:
112
115
  rubygems_version: 1.8.10