forked from mconf/bigbluebutton-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbigbluebutton-api-ruby.gemspec
24 lines (22 loc) · 1.08 KB
/
bigbluebutton-api-ruby.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "bigbluebutton-api-ruby"
s.version = "1.9.0"
s.licenses = ["MIT"]
s.extra_rdoc_files = ["README.md", "LICENSE", "LICENSE_003", "CHANGELOG.md"]
s.summary = "BigBlueButton integration for ruby"
s.description = "Provides methods to access BigBlueButton in a ruby application through its API"
s.authors = ["Mconf", "Leonardo Crauss Daronco"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/mconf/bigbluebutton-api-ruby/"
s.bindir = "bin"
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency('childprocess', '>= 1.0.1')
s.add_runtime_dependency('ffi', '>= 1.9.24')
s.add_runtime_dependency('json', '>= 1.8.6')
s.add_runtime_dependency('nokogiri', '>= 1.10.4')
s.add_runtime_dependency('rack', '>= 1.6.11')
s.add_runtime_dependency('rubyzip', '>= 1.3.0')
s.add_runtime_dependency('xml-simple', '~> 1.1')
end