-
Notifications
You must be signed in to change notification settings - Fork 40
/
bigbluebutton_rails.gemspec
26 lines (23 loc) · 1.07 KB
/
bigbluebutton_rails.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
25
26
$:.push File.expand_path("../lib", __FILE__)
require "bigbluebutton_rails/version"
Gem::Specification.new do |s|
s.name = "bigbluebutton_rails"
s.version = BigbluebuttonRails::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "BigBlueButton integration for Ruby on Rails"
s.email = "[email protected]"
s.homepage = "http://github.com/mconf/bigbluebutton_rails"
s.description = "Allows access and use of BigBlueButton from a Ruby on Rails application"
s.authors = ["Mconf", "Leonardo Crauss Daronco"]
s.email = ["[email protected]", "[email protected]"]
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency("rails", ">= 4.0.0")
s.add_dependency("bigbluebutton-api-ruby", "~> 1.6")
s.add_dependency("resque", "~> 1.25.1")
s.add_dependency("resque-scheduler", "~> 3.0")
s.add_dependency("browser", "~> 0.8.0")
s.add_dependency("activerecord-import", "~> 1.0")
end