{"id":16956998,"url":"https://github.com/jgraichen/uuid4","last_synced_at":"2026-03-03T06:36:40.624Z","repository":{"id":8900862,"uuid":"60119157","full_name":"jgraichen/uuid4","owner":"jgraichen","description":" UUID support library.","archived":false,"fork":false,"pushed_at":"2025-12-31T14:47:54.000Z","size":78,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-04T17:01:22.734Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/jgraichen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-05-31T19:56:49.000Z","updated_at":"2025-12-31T14:47:57.000Z","dependencies_parsed_at":"2025-09-22T07:04:32.266Z","dependency_job_id":"175ce0c5-037d-42f3-8be7-567f401d2224","html_url":"https://github.com/jgraichen/uuid4","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/jgraichen/uuid4","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fuuid4","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fuuid4/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fuuid4/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fuuid4/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jgraichen","download_url":"https://codeload.github.com/jgraichen/uuid4/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fuuid4/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30034123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T06:09:21.518Z","status":"ssl_error","status_checked_at":"2026-03-03T06:08:47.858Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-10-13T22:16:35.512Z","updated_at":"2026-03-03T06:36:40.608Z","avatar_url":"https://github.com/jgraichen.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UUID4\n\n[![Build Status](https://travis-ci.org/jgraichen/uuid4.svg?branch=master)](https://travis-ci.org/jgraichen/uuid4) [![Dependency Status](https://gemnasium.com/badges/github.com/jgraichen/uuid4.svg)](https://gemnasium.com/github.com/jgraichen/uuid4) [![Gem](https://img.shields.io/gem/v/uuid4.svg)](https://rubygems.org/gems/uuid4) [![license](https://img.shields.io/github/license/jgraichen/uuid4.svg)](https://github.com/jgraichen/uuid4/blob/master/LICENSE.txt)\n\nA UUID support library specialized on v4 UUIDs, parsing and formatting existing UUIDs. It can encode and decode dashed UUIDs, compact UUIDs, large integers, UUID URNs and Base62 coded UUIDs.\n\n## Installation\n\n```ruby\ngem 'uuid4'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install uuid4\n\n## Usage\n\n```ruby\nuuid = UUID4('d40aa316-6e30-4bae-a673-7b2cf35a8f99')\n# =\u003e \u003cUUID4:d40aa316-6e30-4bae-a673-7b2cf35a8f99\u003e\n\nuuid.to_s\n# =\u003e \"d40aa316-6e30-4bae-a673-7b2cf35a8f99\"\n\nuuid.to_s(format: :compact)\n# =\u003e \"d40aa3166e304baea6737b2cf35a8f99\"\n\nuuid.to_s(format: :base62)\n# =\u003e \"6s7exj9M9mGqLs5KhhWWaB\"\n\nuuid.to_s(format: :urn)\n# =\u003e \"urn:uuid:d40aa316-6e30-4bae-a673-7b2cf35a8f99\"\n\nuuid.to_i\n# =\u003e 281851565884874220786890141677225938841\n\nuuid == 'd40aa316-6e30-4bae-a673-7b2cf35a8f99'\n# =\u003e true\n\n'd40aa316-6e30-4bae-a673-7b2cf35a8f99' == uuid\n# =\u003e true\n\nuuid == \"d40aa3166e304baea6737b2cf35a8f99\"\n# =\u003e true\n\nuuid == '6s7exj9M9mGqLs5KhhWWaB'\n# =\u003e true\n\nuuid == 281851565884874220786890141677225938841\n# =\u003e true\n\nuuid == 'urn:uuid:d40aa316-6e30-4bae-a673-7b2cf35a8f99'\n# =\u003e true\n\nuuid == UUID4('d40aa316-6e30-4bae-a673-7b2cf35a8f99')\n# =\u003e true\n```\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/jgraichen/uuid4.\n\n\n## License\n\n(c) Jan Graichen\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgraichen%2Fuuid4","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjgraichen%2Fuuid4","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgraichen%2Fuuid4/lists"}