dolphins7.skeleton/Gemfile

15 lines
317 B
Ruby
Raw Normal View History

2023-12-08 17:28:45 +01:00
source "https://rubygems.org"
2023-12-22 06:48:43 +01:00
gemspec
2023-12-08 17:28:45 +01:00
gem "twenty-cli", path: "./twenty-cli"
gem "twenty-backend", path: "./twenty-backend"
2023-12-08 19:27:00 +01:00
gem "twenty-frontend", path: "./twenty-frontend"
2024-02-10 00:27:50 +01:00
require 'rbconfig'
gem "listen"
case RbConfig::CONFIG['target_os']
when /(?i-mx:bsd|dragonfly)/
gem 'rb-kqueue', '>= 0.2'
else
# Poll
end