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/minitest/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.19.0 / 2023-07-26</p> <ul> <li> <p>2 minor enhancements:</p> <ul> <li>Add metadata lazy accessor to Runnable / Result. (matteeyah)</li> <li>Only load minitest/unit (aka ancient MiniTest compatibility layer) if ENV["MT_COMPAT"]</li> </ul> </li> <li> <p>1 bug fix:</p> <ul> <li>Minitest::TestTask enthusiastically added itself to default. (ParadoxV5)</li> </ul> </li> </ul> <p>=== 5.18.1 / 2023-06-16</p> <ul> <li> <p>3 bug fixes:</p> <ul> <li>Avoid extra string allocations when filtering tests. (tenderlove)</li> <li>Only mention deprecated ENV['N'] if it is an integer string.</li> <li>Push up test_order to Minitest::Runnable to fix minitest/hell. (koic)</li> </ul> </li> </ul> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="96a9972916"><code>96a9972</code></a> prepped for release</li> <li><a href="de802824b3"><code>de80282</code></a> + Add metadata lazy accessor to Runnable / Result. (matteeyah)</li> <li><a href="47959978df"><code>4795997</code></a> - Minitest::TestTask enthusiastically added itself to default. (ParadoxV5)</li> <li><a href="a2c6c18570"><code>a2c6c18</code></a> + Only load minitest/unit (aka ancient MiniTest compatibility layer) if ENV["...</li> <li><a href="5f05692630"><code>5f05692</code></a> Replace 'MiniTest' with 'Minitest' in example code. (sambostock)</li> <li><a href="31da3c6b8d"><code>31da3c6</code></a> prepped for release</li> <li><a href="a90720a6c7"><code>a90720a</code></a> Removed 2.6 from CI.</li> <li><a href="ca42951bbf"><code>ca42951</code></a> - Avoid extra string allocations when filtering tests. (tenderlove)</li> <li><a href="e6f4a85e95"><code>e6f4a85</code></a> - Only mention deprecated ENV['N'] if it is an integer string.</li> <li><a href="a9fa045044"><code>a9fa045</code></a> - Push up test_order to Minitest::Runnable to fix minitest/hell. (koic)</li> <li>Additional commits viewable in <a href="https://github.com/minitest/minitest/compare/v5.18.0...v5.19.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.19.0"
|
|
end
|