PactFfi
Ruby spike gem, to show interactions with the Pact Rust FFI methods.
Available on RubyGems - https://rubygems.org/gems/pact-ffi
Installation
Add this line to your application's Gemfile:
gem 'pact-ffi'
And then execute:
bundle
Or install it yourself as:
gem install pact-ffi
Usage
Simple
require 'pact/ffi'
puts PactFfi.pactffi_version
Supported Platforms
- Ruby
- This gem is compatible with all the rubies, and various platforms, it comes pre-packaged with the pact_ffi binary for each platform.
OS | Ruby | Architecture | Supported | Ruby Platform |
---|
MacOS | 2.6 - 3.3 | x86_64 | ✅ | x86_64-darwin |
MacOS | 2.6 - 3.3 | aarch64 (arm) | ✅ | arm64-darwin |
Linux | 2.6 - 3.3 | x86_64 | ✅ | x86_64-linux |
Linux | 2.6 - 3.3 | aarch64 (arm) | ✅ | aarch64-linux |
Linux (musl) | 2.6 - 3.3 | x86_64 | ✅ | x86_64-linux-musl |
Linux (musl) | 2.6 - 3.3 | aarch64 (arm) | ✅ | aarch64-linux-musl |
Windows | 2.6 - 3.3 | x86_64 | ✅ | x64-mingw-ucrt |
You can checkout the ci tests, to see all the architectures, platforms and examples tested
note - Alpine is currently not supported, but is on the list
Development
- run
bin/setup
or bundle install
to install dependencies - run
./script/download-libs.sh
to download FFI libraries for your current platform - run
rake spec
to run tests
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pact-ffi. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the PactFfi project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
Pact Compatibility Suite
Help us implement the Pact Compatibility Suite
compatibility-suite/pact-compatibility-suite/features
├── V1
│ ├── http_consumer.feature
│ └── http_provider.feature
├── V2
│ ├── http_consumer.feature
│ └── http_provider.feature
├── V3
│ ├── generators.feature
│ ├── http_consumer.feature
│ ├── http_generators.feature
│ ├── http_matching.feature
│ ├── http_provider.feature
│ ├── matching_rules.feature
│ ├── message_consumer.feature
│ └── message_provider.feature
├── V4
│ ├── generators.feature
│ ├── http_consumer.feature ✅
│ ├── http_provider.feature
│ ├── matching_rules.feature
│ ├── message_consumer.feature ✅
│ ├── message_provider.feature ✅
│ ├── synchronous_message_consumer.feature ✅
│ └── v4.feature ✅