{"id":16068108,"url":"https://github.com/ged/ruby-verse","last_synced_at":"2025-08-31T12:12:07.669Z","repository":{"id":65988035,"uuid":"998089","full_name":"ged/ruby-verse","owner":"ged","description":"A Ruby binding for Verse, a network protocol that lets multiple applications act together as one large application by sharing data over a network. It's still a work in progress.","archived":false,"fork":false,"pushed_at":"2011-04-02T20:47:59.000Z","size":428,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-10T20:57:04.750Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://deveiate.org/rbverse.html","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ged.png","metadata":{"files":{"readme":"README.md","changelog":"History.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-10-18T15:41:50.000Z","updated_at":"2021-12-17T04:28:02.000Z","dependencies_parsed_at":"2023-02-19T20:45:49.399Z","dependency_job_id":null,"html_url":"https://github.com/ged/ruby-verse","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-verse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-verse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-verse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-verse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ged","download_url":"https://codeload.github.com/ged/ruby-verse/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247318746,"owners_count":20919483,"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","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":[],"created_at":"2024-10-09T06:08:35.766Z","updated_at":"2025-04-05T10:14:17.199Z","avatar_url":"https://github.com/ged.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ruby-Verse\n\n* https://bitbucket.org/ged/ruby-verse\n\n## Description\n\nThis is a Ruby binding for Verse. Verse is a network protocol that lets multiple applications act\ntogether as one large application by sharing data over a network.\n\n**It is still a work in progress.**\n\n\n## Basic Design\n\nThe API was inspired by [Ample](http://www.elmindreda.org/verse/ample/), a C++ wrapper for Verse by\nCamilla Berglund \u003celmindreda@elmindreda.org\u003e.\n\nRuby-Verse consists of several core module functions for interacting with a Verse server, a\ncollection of Node classes, and mixin modules for adding Verse-awareness to your classes.\n\n### Namespace\n\nAll classes and modules in Ruby-Verse are declared inside the _Verse_ module.\n\n### Classes\n\n* Server\n* Session (Observable)\n* Node (Observable)\n\t- ObjectNode\n\t\t* ObjectLink\n\t\t* ObjectTransform\n\t\t* ObjectMethod\n\t\t* ObjectMethodGroup\n\t\t* ObjectAnimation\n\t- GeometryNode\n\t\t* GeometryBone\n\t\t* GeometryLayer\n\t\t* GeometryCrease\n\t- MaterialNode\n\t\t* MaterialFragment\n\t- TextNode\n\t\t* TextBuffer\n\t- BitmapNode\n\t\t* BitmapLayer\n\t- CurveNode\n\t  * CurveKey\n\t- AudioNode\n\t  * AudioBuffer\n\t  * AudioStream\n\n\n### Observer Mixins\n\n* PingObserver\n* SessionObserver\n\n* NodeObserver\n\t- NodeTagObserver\n\t- NodeTagGroupObserver\n* ObjectNodeObserver\n\t- ObjectLinkObserver\n\t- ObjectTransformObserver\n\t- ObjectMethodObserver\n\t- ObjectMethodGroupObserver\n* GeometryNodeObserver\n\t- GeometryBoneObserver\n\t- GeometryLayerObserver\n\t- GeometryCreaseObserver\n* MaterialNodeObserver\n\t- FragmentObserver\n* TextNodeObserver\n\t- TextBufferObserver\n* BitmapNodeObserver\n\t- BitmapLayerObserver\n* CurveNodeObserver\n* AudioNodeObserver\n  - AudioBufferObserver\n  - AudioStreamObserver\n\n\n\n## Installation\n\n    gem install verse\n\n\n## Contributing\n\nYou can check out the current development source with Mercurial via its\n[Bitbucket project][bitbucket]. Or if you prefer Git, via \n[its Github mirror][github].\n\nAfter checking out the source, run:\n\n    $ rake newb\n\nThis task will install any missing dependencies, run the tests/specs,\nand generate the API documentation.\n\n\n## License\n\nPortions of this source code were derived from the Verse source, and are used under the \nfollowing licensing terms:\n\n\u003e Copyright (c) 2005-2008, The Uni-Verse Consortium.\n\u003e All rights reserved.\n\u003e \n\u003e Redistribution and use in source and binary forms, with or without\n\u003e modification, are permitted provided that the following conditions are\n\u003e met:\n\u003e \n\u003e  * Redistributions of source code must retain the above copyright\n\u003e    notice, this list of conditions and the following disclaimer.\n\u003e  * Redistributions in binary form must reproduce the above copyright\n\u003e    notice, this list of conditions and the following disclaimer in the\n\u003e    documentation and/or other materials provided with the distribution.\n\u003e \n\u003e THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n\u003e IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n\u003e TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n\u003e PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER\n\u003e OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n\u003e EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n\u003e PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n\u003e PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n\u003e LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n\u003e NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n\u003e SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe Ruby binding is:\n  \nCopyright (c) 2011, Michael Granger\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice,\n  this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\n* Neither the name of the author/s, nor the names of the project's\n  contributors may be used to endorse or promote products derived from this\n  software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n[bitbucket]: https://bitbucket.org/ged/ruby-verse\n[github]: https://github.com/ged/ruby-verse\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fged%2Fruby-verse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fged%2Fruby-verse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fged%2Fruby-verse/lists"}