Sha256: 47739f4823c83bb85c4cdecb06471f0a4e11aea20fe08676de0da13b6759a0af

Contents?: true

Size: 502 Bytes

Versions: 1

Compression:

Stored size: 502 Bytes

Contents

source "https://rubygems.org"

# Specify your gem's dependencies in rails_twirp.gemspec.
gemspec

gem "sqlite3"
gem "pbbuilder", "~> 0.10.0"
gem "standard"
gem "pry"

# HACK(bouk): Overwrite Bundler's platform matcher to ignore universal CPU
# The protobuf and gRPC 'universal' macOS gems break on M1
module Bundler::MatchPlatform
  def match_platform(p)
    return false if ::Gem::Platform === platform && platform.cpu == "universal"
    Bundler::MatchPlatform.platforms_match?(platform, p)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_twirp-0.10.0 Gemfile