-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbbb-ruby.gemspec
More file actions
24 lines (22 loc) · 950 Bytes
/
bbb-ruby.gemspec
File metadata and controls
24 lines (22 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bbb-ruby/version"
Gem::Specification.new do |s|
s.name = "bbb-ruby"
s.version = Bbb::Ruby::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Original: Joe Kinsella, Git Version: Maximilian Mack"]
s.email = ["maximilian.mack@dozeo.com"]
s.homepage = "http://www.dozeo.com"
s.summary = %q{ruby gem for the BigBlueButton API}
s.description = %q{
Original code and author: http://code.google.com/p/bigbluebuttongem/ by Joe Kinsella.
Changes by Maximilian Mack, dozeo Webinar Hosting GmbH.
}
s.test_files = Dir["spec/**/*.rb"]
s.add_development_dependency 'rspec'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end