dolphins7.skeleton/Gemfile

15 lines
311 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-server", path: "./twenty-server"
gem "twenty-client", path: "./twenty-client"
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