A library for handling DID identifiers used in Bluesky AT Protocol

some minor updates in the readme

+7 -3
+7 -3
README.md
··· 13 13 14 14 ## Installation 15 15 16 - From the command line: 16 + To use DIDKit, you need a reasonably new version of Ruby – it should run on Ruby 2.6 and above, although it's recommended to use a version that's still getting maintainance updates, i.e. currently 3.2+. A compatible version should be preinstalled on macOS Big Sur and above and on many Linux systems. Otherwise, you can install one using tools such as [RVM](https://rvm.io), [asdf](https://asdf-vm.com), [ruby-install](https://github.com/postmodern/ruby-install) or [ruby-build](https://github.com/rbenv/ruby-build), or `rpm` or `apt-get` on Linux (see more installation options on [ruby-lang.org](https://www.ruby-lang.org/en/downloads/)). 17 17 18 - gem install didkit 18 + To install the gem, run in the command line: 19 19 20 - Or, add this to your `Gemfile`: 20 + [sudo] gem install didkit 21 + 22 + Or add this to your app's `Gemfile`: 21 23 22 24 gem 'didkit', '~> 0.3' 23 25 ··· 109 111 Copyright © 2025 Kuba Suder ([@mackuba.eu](https://bsky.app/profile/did:plc:oio4hkxaop4ao4wz2pp3f4cr)). 110 112 111 113 The code is available under the terms of the [zlib license](https://choosealicense.com/licenses/zlib/) (permissive, similar to MIT). 114 + 115 + Bug reports and pull requests are welcome 😎