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'
|
2022-12-15 20:07:16 +08:00
|
|
|
gem 'loofah', '~> 2.19.1'
|
|
|
|
gem 'nokogiri', '~> 1.13.10', '>= 1.13.10'
|
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'
|
2023-08-21 04:05:57 +08:00
|
|
|
gem 'resque', '~> 2.6', '>= 2.6.0'
|
2023-06-24 06:20:37 +08:00
|
|
|
gem 'bbbevents', '~> 2.0', '>= 2.0.0'
|
2021-08-31 05:46:52 +08:00
|
|
|
gem 'rake', '>= 12.3', '<14'
|
2022-08-17 21:30:28 +08:00
|
|
|
gem 'tzinfo', '>= 1.2.10'
|
2019-05-31 01:20:16 +08:00
|
|
|
|
|
|
|
group :test, optional: true do
|
2022-06-30 04:38:39 +08:00
|
|
|
gem 'rubocop', '~> 1.31.1'
|
2021-08-31 05:46:52 +08:00
|
|
|
gem 'minitest', '~> 5.14.1'
|
2019-05-31 01:20:16 +08:00
|
|
|
end
|