{"id":25846424,"url":"https://github.com/snkrheadz/random_password","last_synced_at":"2025-06-22T18:36:22.983Z","repository":{"id":40960111,"uuid":"122423957","full_name":"snkrheadz/random_password","owner":"snkrheadz","description":"Generate strong passwords","archived":false,"fork":false,"pushed_at":"2023-01-11T19:43:57.000Z","size":18,"stargazers_count":3,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-06T01:08:35.014Z","etag":null,"topics":["password-generator","ruby","rubygem"],"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/snkrheadz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-22T03:04:29.000Z","updated_at":"2023-05-12T13:37:42.000Z","dependencies_parsed_at":"2023-02-09T05:17:59.691Z","dependency_job_id":null,"html_url":"https://github.com/snkrheadz/random_password","commit_stats":null,"previous_names":["akinrt/random_password"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/snkrheadz/random_password","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snkrheadz%2Frandom_password","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snkrheadz%2Frandom_password/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snkrheadz%2Frandom_password/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snkrheadz%2Frandom_password/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snkrheadz","download_url":"https://codeload.github.com/snkrheadz/random_password/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snkrheadz%2Frandom_password/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261344580,"owners_count":23144893,"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":["password-generator","ruby","rubygem"],"created_at":"2025-03-01T09:29:32.769Z","updated_at":"2025-06-22T18:36:17.964Z","avatar_url":"https://github.com/snkrheadz.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔑 RandomPassword [![Gem Version](https://badge.fury.io/rb/random_password.svg)](https://badge.fury.io/rb/random_password) [![Build Status](https://travis-ci.org/akinrt/random_password.svg)]()\n\n🔑 RandomPassword is a strong password generator that help your way to generate secure password quickly.\n\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'random_password'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install random_password\n\n## Usage\n\nCreating a RandomPassword::Base instance to generate strong passwords.\n\n```ruby\n# create a RandomPassword::Base instance\nrandom_password = RandomPassword.new(length: 24, digits: 7, symbols: 4)\n=\u003e #\u003cRandomPassword::Base:0x00007facdd82f5c8 @length=24, @digits=7, @symbols=4\u003e\n\n# generate a strong password along to the given options\nrandom_password.generate\n=\u003e \"F3F[@85jAeeezcM368f@6cs;\"\n\n# update options\nrandom_password.update(length: 12, digits: 4, symbols: 3)\n=\u003e #\u003cRandomPassword::Base:0x00007facde2466d8 @length=12, @digits=4, @symbols=3\u003e\nrandom_password.generate\n=\u003e \"tN?h246#2)kB\"\n```\n\nCreating a strong password.\n\n```ruby\nRandomPassword.generate(length: 24, digits: 7, symbols: 4)\n=\u003e \"V0+Dl*J.IE2PG1Vyh12,8kP6\"\n```\n\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/akinrt/random_password. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the RandomPassword project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/akinrt/random_password/blob/master/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnkrheadz%2Frandom_password","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnkrheadz%2Frandom_password","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnkrheadz%2Frandom_password/lists"}