Sha256: 81f13420104bb77c8c89b1f5a2178e7f3db6e94a3a36ba4ffa55ff9d6af7387b

Contents?: true

Size: 655 Bytes

Versions: 2

Compression:

Stored size: 655 Bytes

Contents

#!/usr/bin/env ruby
platform = `uname -sm`

exe = case platform
      when /^Darwin.*arm64/; "zeus-darwin-arm64"
      when /^Darwin/       ; "zeus-darwin-amd64"
      when /^Linux.*64/    ; "zeus-linux-amd64"
      when /^Linux.*/      ; "zeus-linux-386"
      else
        puts "Zeus is not supported on your platform."
        puts "It's not likely to ever be possible on Windows."
        puts "If you're using another platform that you think should work easily, open an issue at:"
        puts "https://github.com/burke/zeus/issues"
        exit 1
      end

zeusgemdir = File.expand_path("../../", __FILE__)
exec "#{zeusgemdir}/build/#{exe}", *ARGV

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zeus-0.17.0 bin/zeus
zeus-0.16.0 bin/zeus