bigbluebutton-api-ruby 1.3.0 → 1.4.0
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.
- checksums.yaml +7 -0
- data/.ruby-version +1 -1
- data/.travis.yml +5 -3
- data/CHANGELOG.rdoc +7 -0
- data/Gemfile.lock +5 -3
- data/LICENSE +1 -1
- data/README.rdoc +5 -2
- data/Rakefile +4 -1
- data/bigbluebutton-api-ruby.gemspec +11 -10
- data/examples/join_example.rb +0 -1
- data/features/config.yml.example +2 -4
- data/lib/bigbluebutton_api.rb +2 -2
- data/spec/bigbluebutton_api_0.9_spec.rb +33 -0
- data/spec/bigbluebutton_api_spec.rb +606 -600
- metadata +16 -24
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigbluebutton-api-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.4.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Leonardo Crauss Daronco
|
@@ -10,22 +9,20 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
12
|
+
date: 2015-07-20 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: xml-simple
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
|
-
- -
|
18
|
+
- - ">="
|
21
19
|
- !ruby/object:Gem::Version
|
22
20
|
version: 1.1.1
|
23
21
|
type: :runtime
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
|
-
- -
|
25
|
+
- - ">="
|
29
26
|
- !ruby/object:Gem::Version
|
30
27
|
version: 1.1.1
|
31
28
|
description: Provides an interface to the BigBlueButton web meeting API (https://github.com/mconf/bigbluebutton-api-ruby)
|
@@ -40,10 +37,10 @@ extra_rdoc_files:
|
|
40
37
|
- LICENSE_003
|
41
38
|
- CHANGELOG.rdoc
|
42
39
|
files:
|
43
|
-
- .gitignore
|
44
|
-
- .rspec
|
45
|
-
- .ruby-version
|
46
|
-
- .travis.yml
|
40
|
+
- ".gitignore"
|
41
|
+
- ".rspec"
|
42
|
+
- ".ruby-version"
|
43
|
+
- ".travis.yml"
|
47
44
|
- CHANGELOG.rdoc
|
48
45
|
- Gemfile
|
49
46
|
- Gemfile.lock
|
@@ -84,6 +81,7 @@ files:
|
|
84
81
|
- lib/bigbluebutton_hash_to_xml.rb
|
85
82
|
- lib/bigbluebutton_modules.rb
|
86
83
|
- spec/bigbluebutton_api_0.81_spec.rb
|
84
|
+
- spec/bigbluebutton_api_0.9_spec.rb
|
87
85
|
- spec/bigbluebutton_api_spec.rb
|
88
86
|
- spec/bigbluebutton_config_layout_spec.rb
|
89
87
|
- spec/bigbluebutton_config_xml_spec.rb
|
@@ -96,33 +94,27 @@ files:
|
|
96
94
|
- spec/support/forgery/forgeries/random_name.rb
|
97
95
|
- spec/support/forgery/forgeries/url.rb
|
98
96
|
homepage: https://github.com/mconf/bigbluebutton-api-ruby/
|
99
|
-
licenses:
|
97
|
+
licenses:
|
98
|
+
- MIT
|
99
|
+
metadata: {}
|
100
100
|
post_install_message:
|
101
101
|
rdoc_options: []
|
102
102
|
require_paths:
|
103
103
|
- lib
|
104
104
|
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
105
|
requirements:
|
107
|
-
- -
|
106
|
+
- - ">="
|
108
107
|
- !ruby/object:Gem::Version
|
109
108
|
version: '0'
|
110
|
-
segments:
|
111
|
-
- 0
|
112
|
-
hash: -1402282552445394412
|
113
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
-
none: false
|
115
110
|
requirements:
|
116
|
-
- -
|
111
|
+
- - ">="
|
117
112
|
- !ruby/object:Gem::Version
|
118
113
|
version: '0'
|
119
|
-
segments:
|
120
|
-
- 0
|
121
|
-
hash: -1402282552445394412
|
122
114
|
requirements: []
|
123
115
|
rubyforge_project:
|
124
|
-
rubygems_version:
|
116
|
+
rubygems_version: 2.4.5
|
125
117
|
signing_key:
|
126
|
-
specification_version:
|
118
|
+
specification_version: 4
|
127
119
|
summary: Provides an interface to the BigBlueButton web meeting API (https://github.com/mconf/bigbluebutton-api-ruby)
|
128
120
|
test_files: []
|