mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
Updates the requirements on [minitest](https://github.com/seattlerb/minitest) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/minitest/minitest/blob/master/History.rdoc">minitest's changelog</a>.</em></p> <blockquote> <p>=== 5.17.0 / 2022-12-31</p> <ul> <li> <p>1 minor enhancement:</p> <ul> <li>Refactor setup hooks into a SETUP_METHODS constant. (MSP-Greg)</li> </ul> </li> <li> <p>3 bug fixes:</p> <ul> <li>Fix kwargs for Mock calls to delegator. (blowmage)</li> <li>Fix kwargs for expectations. (bobmazanec, blowmage)</li> <li>Remove check for .b method. (tenderlove)</li> </ul> </li> </ul> <p>=== 5.16.3 / 2022-08-17</p> <ul> <li> <p>2 bug fixes:</p> <ul> <li>Fixed exception sanitization by removing TypeError restriction on rescue.</li> <li>Use A instead of deprecated TESTOPTS in rake test:slow. (davidstosik)</li> </ul> </li> </ul> <p>=== 5.16.2 / 2022-07-03</p> <ul> <li> <p>4 bug fixes:</p> <ul> <li>Added MT_KWARGS_HACK kludge for stub to deal with ruby 2.7 kwargs nastiness. (tsugimoto)</li> <li>In #expect, pop Hash class from args if $MT_KWARGS_HACK. (casperisfine)</li> <li>In above scenario, set expected kwargs (as Objects) based on actual kwargs.</li> <li>Nuke ivars if exception fails to marshal twice (eg better_errors). (irphilli)</li> </ul> </li> </ul> <p>=== 5.16.1 / 2022-06-20</p> <ul> <li> <p>2 bug fixes:</p> <ul> <li>Apparently adding real kwarg support to mocks/stubs broke some code. Fixed. <ul> <li>Use <code>MT_KWARGS_HACK=1</code> to activate the kludgy kwargs support w/ caveats.</li> </ul> </li> <li>Clarified some doco wrt the block on #stub.</li> </ul> </li> </ul> <p>=== 5.16.0 / 2022-06-14</p> <ul> <li> <p>2 major enhancements:</p> <ul> <li>Added Minitest::TestTask.</li> <li>Dropping ruby 2.2 - 2.5. 2.6 is DTM soon too.</li> </ul> </li> <li> <p>11 minor enhancements:</p> <ul> <li>Added --show-skips option to show skips at end of run but not require --verbose. (MSP-Greg)</li> <li>Added Minitest.seed, the random seed used by the run.</li> <li>Calling <code>srand Minitest.seed</code> before all shuffles to ensure determinism.</li> <li>Extended #stub to handle kwargs for both block and call args. (SampsonCrowley)</li> <li>Extended Mock#__call to display kwargs.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="abdde9d03b"><code>abdde9d</code></a> prepped for release</li> <li><a href="c0be030603"><code>c0be030</code></a> - Fix kwargs for Mock calls to delegator. (blowmage)</li> <li><a href="87604fca4d"><code>87604fc</code></a> - Fix kwargs for expectations. (bobmazanec, blowmage)</li> <li><a href="0b816d303b"><code>0b816d3</code></a> Add EOL date to rails matrix</li> <li><a href="2f7ed237f1"><code>2f7ed23</code></a> cleaned up rails version</li> <li><a href="ae54abfb23"><code>ae54abf</code></a> Updated README for rails/ruby compatibilty matrix</li> <li><a href="4f31487068"><code>4f31487</code></a> Fixed race condition causing flaky tests. (XrXr)</li> <li><a href="dcdd882fbe"><code>dcdd882</code></a> get rake dcov back to 100%</li> <li><a href="3a77687e8b"><code>3a77687</code></a> + Refactor setup hooks into a SETUP_METHODS constant. (MSP-Greg)</li> <li><a href="b5565c0c7a"><code>b5565c0</code></a> - Remove check for .b method. (tenderlove)</li> <li>See full diff in <a href="https://github.com/seattlerb/minitest/compare/v5.16.3...v5.17.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
16 lines
277 B
Ruby
16 lines
277 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Specify your gem's dependencies in extism.gemspec
|
|
gemspec
|
|
|
|
gem "rake", "~> 13.0"
|
|
gem "ffi", "~> 1.15.5"
|
|
|
|
group :development do
|
|
gem "yard", "~> 0.9.28"
|
|
gem "rufo", "~> 0.13.0"
|
|
gem "minitest", "~> 5.17.0"
|
|
end
|