2020-01-22 06:06:08 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2012-09-05 05:42:13 +08:00
|
|
|
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
|
|
|
|
#
|
2020-01-22 06:06:08 +08:00
|
|
|
# Copyright © 2019 BigBlueButton Inc. and by respective authors (see below).
|
2012-09-05 05:42:13 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU Lesser General Public License as published by the Free Software
|
|
|
|
# Foundation; either version 3.0 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-01-22 06:06:08 +08:00
|
|
|
source 'https://rubygems.org'
|
2011-02-26 07:03:39 +08:00
|
|
|
|
2020-01-22 06:06:08 +08:00
|
|
|
gem 'absolute_time', '~> 1.0'
|
|
|
|
gem 'builder', '~> 3.2'
|
|
|
|
gem 'fastimage', '~> 2.1'
|
|
|
|
gem 'java_properties'
|
|
|
|
gem 'journald-logger', '~> 3.0'
|
|
|
|
gem 'jwt', '~> 2.2'
|
|
|
|
gem 'locale', '~> 2.1'
|
|
|
|
gem 'loofah', '~> 2.3'
|
2021-11-24 10:59:07 +08:00
|
|
|
gem 'nokogiri'
|
2020-01-22 06:06:08 +08:00
|
|
|
gem 'open4', '~> 1.3'
|
|
|
|
gem 'rb-inotify', '~> 0.10'
|
|
|
|
gem 'redis', '~> 4.1'
|
|
|
|
gem 'rubyzip', '~> 2.0'
|
2021-11-24 10:59:59 +08:00
|
|
|
gem 'optimist'
|
2020-01-22 06:06:08 +08:00
|
|
|
gem 'resque', '~> 2.0.0'
|
2020-07-18 02:34:57 +08:00
|
|
|
gem 'bbbevents', '~> 1.2'
|
2021-08-31 05:46:52 +08:00
|
|
|
gem 'rake', '>= 12.3', '<14'
|
2019-05-31 01:20:16 +08:00
|
|
|
|
|
|
|
group :test, optional: true do
|
2020-01-22 06:06:08 +08:00
|
|
|
gem 'rubocop', '~> 0.79.0'
|
2021-08-31 05:46:52 +08:00
|
|
|
gem 'minitest', '~> 5.14.1'
|
2019-05-31 01:20:16 +08:00
|
|
|
end
|