# frozen_string_literal: true

source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '>= 2.6.5'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '>= 6.0.3', '>= 6.0.3.4'
# Use Puma as the app server
gem 'puma', '>= 5.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '>= 2.7'
# Use Active Model has_secure_password
# gem 'bcrypt', '>= 3.1.7'

# Redis connection setup for live session (server and meeting) tracking
gem 'connection_pool', '>= 2.2.2'
gem 'hiredis', '>= 0.6.3'
gem 'redis', '>= 4.1.3'
gem 'redis-namespace', '>= 1.7.0'

# Use postgresql as the database for Active Record
gem 'pg'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false

# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'

# Generates a terminal table
gem 'tabulo', '>= 2.3.0'

# Used by recording watch task. Version limit is for compat with rails auto-reloader.
gem 'listen', '>= 3.0.5'

