24 lines
601 B
Ruby
24 lines
601 B
Ruby
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby '2.5.3'
|
|
|
|
gem 'rails', '~> 5.2.1'
|
|
|
|
gem 'bcrypt', '~> 3.1.7'
|
|
gem 'bootsnap', '>= 1.1.0', require: false
|
|
gem 'jbuilder', '~> 2.5'
|
|
gem 'puma', '~> 3.11'
|
|
gem 'rack-cors'
|
|
gem 'sqlite3'
|
|
|
|
group :development, :test do
|
|
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
|
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
gem 'spring'
|
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|