{"id":22455416,"url":"https://github.com/grayvox/linked-lists","last_synced_at":"2025-08-03T19:14:45.420Z","repository":{"id":244858729,"uuid":"816469378","full_name":"Grayvox/linked-lists","owner":"Grayvox","description":"📋 Linked Lists, but in Ruby.","archived":false,"fork":false,"pushed_at":"2024-06-27T00:27:24.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T13:17:52.497Z","etag":null,"topics":["computer-science","ruby","theodinproject"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Grayvox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-06-17T20:24:43.000Z","updated_at":"2024-06-27T00:27:27.000Z","dependencies_parsed_at":"2024-06-27T03:35:29.902Z","dependency_job_id":"f5c30601-32e9-40e8-8cdd-725e52e65173","html_url":"https://github.com/Grayvox/linked-lists","commit_stats":null,"previous_names":["grayvox/linked-lists"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Grayvox/linked-lists","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grayvox%2Flinked-lists","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grayvox%2Flinked-lists/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grayvox%2Flinked-lists/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grayvox%2Flinked-lists/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Grayvox","download_url":"https://codeload.github.com/Grayvox/linked-lists/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grayvox%2Flinked-lists/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264010960,"owners_count":23543717,"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":["computer-science","ruby","theodinproject"],"created_at":"2024-12-06T07:11:48.729Z","updated_at":"2025-07-07T04:09:33.118Z","avatar_url":"https://github.com/Grayvox.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linked Lists in Ruby\n\nCreates a functional Linked List object in Ruby!\nThis implementation includes the following methods to go with the object:\n\n- [x] `#append(value)` -- adds a new node containing value to the end of the list\n- [x] `#prepend(value)` -- adds a new node containing value to the start of the list\n- [x] `#size` -- returns the total number of nodes in the list\n- [x] `#head` -- returns the first node in the list\n- [x] `#tail` -- returns the last node in the list\n- [x] `#at(index)` -- returns the node at the given index\n- [x] `#pop` -- removes the last element from the list\n- [x] `#contains?(value)` -- returns true if the passed in value is in the list and otherwise returns false.\n- [x] `#find(value)` -- returns the index of the node containing value, or nil if not found.\n- [x] `#to_s` -- represent LinkedList objects as strings, so you can print them out and preview them in the console. Format is: ( value ) -\u003e ( value ) -\u003e ( value ) -\u003e nil\n- [x] `#insert_at(value, index)` -- inserts a new node with the provided value at the given index.\n- [x] `#remove_at(index)` -- removes the node at the given index.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrayvox%2Flinked-lists","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrayvox%2Flinked-lists","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrayvox%2Flinked-lists/lists"}