{"id":18728738,"url":"https://github.com/rubyonworld/rfusefs","last_synced_at":"2025-08-31T09:35:59.480Z","repository":{"id":174008052,"uuid":"542159768","full_name":"RubyOnWorld/rfusefs","owner":"RubyOnWorld","description":"RFuseFS is a port of the FuseFS library aimed at allowing Ruby programmers to quickly and easily create virtual filesystems with little more than a few lines of code.","archived":false,"fork":false,"pushed_at":"2022-09-28T01:00:50.000Z","size":220,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-19T20:32:36.757Z","etag":null,"topics":["library","rails","rfusefs","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RubyOnWorld.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-27T15:32:54.000Z","updated_at":"2022-09-28T03:53:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"67744dde-ac86-469c-bac9-3922fca04d55","html_url":"https://github.com/RubyOnWorld/rfusefs","commit_stats":null,"previous_names":["rubyonworld/rfusefs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RubyOnWorld/rfusefs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Frfusefs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Frfusefs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Frfusefs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Frfusefs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RubyOnWorld","download_url":"https://codeload.github.com/RubyOnWorld/rfusefs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Frfusefs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272965380,"owners_count":25023066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["library","rails","rfusefs","ruby"],"created_at":"2024-11-07T14:24:11.552Z","updated_at":"2025-08-31T09:35:59.419Z","avatar_url":"https://github.com/RubyOnWorld.png","language":"Ruby","readme":"# rfusefs\n\n*   https://rubygems.org/gems/rfusefs\n*   https://github.com/lwoggardner/rfusefs\n\n[\u003cimg src=\"https://badge.fury.io/rb/rfusefs.png\" alt=\"Gem Version\"\n/\u003e](http://badge.fury.io/rb/rfusefs)\n## DESCRIPTION\n\nRFuseFS is a port of the [FuseFS](http://rubygems.org/gems/fusefs/) library\naimed at allowing Ruby programmers to quickly and easily create virtual\nfilesystems with little more than a few lines of code.\n\nRFuseFS is api compatible with FuseFS (0.7.0)\n\n## SYNOPSIS\n\nFuseFS provides a layer of abstraction to a programmer who wants to create a\nvirtual filesystem via FUSE.\n\nFirst define a virtual directory by subclassing {FuseFS::FuseDir}\n\nSee samples under /samples and also the following starter classes\n\n*   {FuseFS::FuseDir}\n*   {FuseFS::MetaDir}\n*   {FuseFS::DirLink}\n*   {FuseFS::PathMapperFS}\n*   {FuseFS::SqliteMapperFS}\n\n\nThen start your filesystem with\n\n*   {FuseFS.main} or {FuseFS.start}\n\n\nFinally to use the filesystem open up your favourite file browser/terminal and\nexplore the contents under \u003cmountpoint\u003e\n\nHappy Filesystem Hacking!\n\n### the hello world filesystem in 14 LOC\n\n    require 'rfusefs'\n\n    class HelloDir\n\n      def contents(path)\n        ['hello.txt']\n      end\n\n      def file?(path)\n        path == '/hello.txt'\n      end\n\n      def read_file(path)\n        \"Hello, World!\\n\"\n      end\n\n    end\n\n    # Usage: #{$0} mountpoint [mount_options]\n    FuseFS.main() { |options| HelloDir.new }\n\n## REQUIREMENTS:\n\n*   FUSE (http://fuse.sourceforge.net)\n*   Ruby (\u003e= 2.5)\n*   rfuse (~\u003e 1.2)\n\n\n## INSTALL:\n\n*   gem install rfusefs\n\n## DEVELOPERS:\n\nAfter checking out the source, run:\n\n    $ bundle install # install dependencies\n    $ rake spec # run tests\n    $ rake yard # generate docs\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyonworld%2Frfusefs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubyonworld%2Frfusefs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyonworld%2Frfusefs/lists"}