github.com/anycable/anycable-go@v1.5.1/Gemfile (about)

     1  # Gemfile for running conformance tests with Anyt
     2  source "https://rubygems.org"
     3  
     4  gem "nats-pure", "< 2.3.0"
     5  gem "colorize"
     6  gem "puma"
     7  
     8  gem "activesupport", "~> 7.0.0"
     9  
    10  if File.directory?(File.join(__dir__, "../anycable"))
    11    $stdout.puts "\n=== Using local gems for Anyt ===\n\n"
    12    gem "debug"
    13    gem "anycable", path: "../anycable"
    14    gem "anycable-rails", path: "../anycable-rails"
    15    gem "anyt", path: "../anyt"
    16    gem "wsdirector-cli", path: "../wsdirector"
    17  else
    18    gem "anycable", github: "anycable/anycable"
    19    gem "anycable-rails", github: "anycable/anycable-rails"
    20    gem "anyt", github: "anycable/anyt"
    21    gem "wsdirector-cli", github: "palkan/wsdirector"
    22  end