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.18.0 / 2023-03-04</p> <ul> <li> <p>2 major enhancements:</p> <ul> <li>Added assert_pattern & refute_pattern for pattern matching. (flavorjones)</li> <li>Added matching must_pattern_match & wont_pattern_match to minitest/spec.</li> </ul> </li> <li> <p>1 bug fix:</p> <ul> <li>Support the new message format of NameError in Ruby 3.3 (mame)</li> </ul> </li> </ul> <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>2 major enhancements:</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="506ce83b45"><code>506ce83</code></a> prepped for release</li> <li><a href="0c44f4ea32"><code>0c44f4e</code></a> ! Added assert_pattern & refute_pattern for pattern matching. (flavorjones)</li> <li><a href="899b420aa0"><code>899b420</code></a> Fixed typo in doco. (ahangarha)</li> <li><a href="ebd8a673a1"><code>ebd8a67</code></a> - Support the new message format of NameError in Ruby 3.3 (mame)</li> <li><a href="0984e29995"><code>0984e29</code></a> Add 2.6 to matrix... stays until some rails versions expire, sadly.</li> <li><a href="d5e68e6ef4"><code>d5e68e6</code></a> Adds Ruby 3.2 to the CI matrix. Also updates checkout action version. (peterg...</li> <li><a href="69bc4b0f5b"><code>69bc4b0</code></a> Minor tweak to Rakefile to fix CI on older rubies</li> <li>See full diff in <a href="https://github.com/seattlerb/minitest/compare/v5.17.0...v5.18.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.18.0"
|
|
end
|