Updates the requirements on sys-filesystem to permit the latest version.
Changelog
*Sourced from [sys-filesystem's changelog](https://github.com/djberg96/sys-filesystem/blob/ffi/CHANGES).*
> == 1.3.0 - 3-Oct-2019
> * Added the mount and umount singleton methods.
> * Changed an internal class variable to a frozen constant.
>
> == 1.2.0 - 1-Jan-2019
> * Changed the license to Apache-2.0.
> * Added the case_sensitive? and case_insensitive? instance methods to the
> Filesystem::Stat class.
> * Refactored the Numeric helper methods into a single location.
> * Fixed the deprecation warnings when running the tests on Windows.
> * Added metadata to the gemspec.
>
> == 1.1.9 - 26-Jan-2018
> * The bytes_free and bytes_total methods were updated to use the fragment size
> instead of the block size. This fixes Macs using APFS, as well as Solaris 10.
> Thanks go to Mikhail Vasin for the spot.
> * Removed the code specific to FreeBSD 10, which was ultimately an attempt
> to address the issue now resolved by the above change.
> * Updated the cert again.
>
> == 1.1.8 - 2-Sep-2017
> * The stat and mount_point methods now call to_s on the string argument
> explicitly so that Pathname objects will now work with String#wincode.
> * Updated some tests to avoid Fixnum warnings for Ruby 2.4.
> * Updated the cert.
>
> == 1.1.7 - 1-Aug-2016
> * Fixed an issue in the stat method for MS Windows where the blocks_avail
> value was not correct. Thanks go to Maxime Lapointe for the spot.
>
> == 1.1.6 - 17-May-2016
> * On versions that use setmntent or fopen, explicitly raise an error if
> either of those calls return a null value.
>
> == 1.1.5 - 5-Dec-2015
> * This gem is now signed.
> * The gem related tasks in the Rakefile now assume Rubygems 2.x.
> * Updates to the gemspec, added cert_chain, removed rubyforge_project.
> * Internal reorganization, and use of relative_require as appropriate.
> * Added a sys-filesystem.rb file for convenience.
>
> == 1.1.4 - 15-Mar-2015
> * The File.mounts method no longer raises an error if a mount point
> is not accessible. Thanks go to Michael Pope for the patch.
> * Some internal code reorganization.
>
> == 1.1.3 - 1-Oct-2014
> * Now ignores EPERM errors when trying to find the mount point for a path.
> Thanks go to petersen for the patch.
> * The Filesystem.stat method now defaults to using the root path on Windows
> ... (truncated)
Commits
- See full diff in [compare view](https://github.com/djberg96/sys-filesystem/commits/sys-filesystem-1.3.0)
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 commands and options
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)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Updates the requirements on sys-filesystem to permit the latest version.
Changelog
*Sourced from [sys-filesystem's changelog](https://github.com/djberg96/sys-filesystem/blob/ffi/CHANGES).* > == 1.3.0 - 3-Oct-2019 > * Added the mount and umount singleton methods. > * Changed an internal class variable to a frozen constant. > > == 1.2.0 - 1-Jan-2019 > * Changed the license to Apache-2.0. > * Added the case_sensitive? and case_insensitive? instance methods to the > Filesystem::Stat class. > * Refactored the Numeric helper methods into a single location. > * Fixed the deprecation warnings when running the tests on Windows. > * Added metadata to the gemspec. > > == 1.1.9 - 26-Jan-2018 > * The bytes_free and bytes_total methods were updated to use the fragment size > instead of the block size. This fixes Macs using APFS, as well as Solaris 10. > Thanks go to Mikhail Vasin for the spot. > * Removed the code specific to FreeBSD 10, which was ultimately an attempt > to address the issue now resolved by the above change. > * Updated the cert again. > > == 1.1.8 - 2-Sep-2017 > * The stat and mount_point methods now call to_s on the string argument > explicitly so that Pathname objects will now work with String#wincode. > * Updated some tests to avoid Fixnum warnings for Ruby 2.4. > * Updated the cert. > > == 1.1.7 - 1-Aug-2016 > * Fixed an issue in the stat method for MS Windows where the blocks_avail > value was not correct. Thanks go to Maxime Lapointe for the spot. > > == 1.1.6 - 17-May-2016 > * On versions that use setmntent or fopen, explicitly raise an error if > either of those calls return a null value. > > == 1.1.5 - 5-Dec-2015 > * This gem is now signed. > * The gem related tasks in the Rakefile now assume Rubygems 2.x. > * Updates to the gemspec, added cert_chain, removed rubyforge_project. > * Internal reorganization, and use of relative_require as appropriate. > * Added a sys-filesystem.rb file for convenience. > > == 1.1.4 - 15-Mar-2015 > * The File.mounts method no longer raises an error if a mount point > is not accessible. Thanks go to Michael Pope for the patch. > * Some internal code reorganization. > > == 1.1.3 - 1-Oct-2014 > * Now ignores EPERM errors when trying to find the mount point for a path. > Thanks go to petersen for the patch. > * The Filesystem.stat method now defaults to using the root path on Windows > ... (truncated)Commits
- See full diff in [compare view](https://github.com/djberg96/sys-filesystem/commits/sys-filesystem-1.3.0)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 commands and options
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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)