18 lines
383 B
Ruby
18 lines
383 B
Ruby
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby '2.7.2'
|
|
gem 'dotenv-rails'
|
|
gem 'bunny'
|
|
gem 'mail'
|
|
gem 'pg'
|
|
gem 'rails', '~> 6.1.7'
|
|
gem 'midi-smtp-server', '~> 3.0.1'
|
|
gem 'openssl'
|
|
|
|
group :development do
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
gem 'listen', '~> 3.3'
|
|
gem 'spring'
|
|
end
|