https://github.com/lwoggardner/rfusefs
Ruby FUSE filesystem - write filesystems in Ruby (FuseFS API over rfuse)
https://github.com/lwoggardner/rfusefs
Last synced: about 1 month ago
JSON representation
Ruby FUSE filesystem - write filesystems in Ruby (FuseFS API over rfuse)
- Host: GitHub
- URL: https://github.com/lwoggardner/rfusefs
- Owner: lwoggardner
- License: mit
- Created: 2011-02-18T22:01:24.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2023-01-08T07:38:39.000Z (over 2 years ago)
- Last Synced: 2024-09-17T19:55:06.493Z (7 months ago)
- Language: Ruby
- Homepage: https://rubygems.org/gems/rfusefs
- Size: 227 KB
- Stars: 73
- Watchers: 10
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fuse-fs - rfusefs - Ruby FUSE filesystem - (Libraries)
README
# rfusefs - DEPRECATED
===============### DEPRECATED
This gem exists and is maintained for backwards compatibility only.
Existing RFuseFS filesystems are recommended to refactor to depend directly on
[ffi_libfuse](http://rubygems.org/gems/ffi-libfuse) which supports Fuse 3 and Macfuse---------------
## DESCRIPTION
RFuseFS is a port of the [FuseFS](http://rubygems.org/gems/fusefs/) library
aimed at allowing Ruby programmers to quickly and easily create virtual
filesystems with little more than a few lines of code.RFuseFS is api compatible with FuseFS (0.7.0)
## REQUIREMENTS:
* FUSE (http://fuse.sourceforge.net) (>= 2.8) or MACFuse
* Ruby (>= 2.7)
* rfuse (~> 2.0)## ~~DEVELOPERS~~~