From 0b45ad3bcd710faed2404dbad70d1338834621f2 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 14 Nov 2023 16:41:07 -0700 Subject: [PATCH] update docs and push a new release --- README.md | 14 ++++---------- lib/version.rb | 2 +- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8d32aac..3c26610 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,7 @@ A redacting Ruby logger to prevent the leaking of secrets via logs ## Installation 💎 -You can download this Gem from either [RubyGems](https://rubygems.org/gems/redacting-logger) or [GitHub Packages](https://github.com/github/redacting-logger/pkgs/rubygems/redacting-logger) - -RubyGems (Recommended): - -```bash -gem install redacting-logger -``` - -> RubyGems [link](https://rubygems.org/gems/redacting-logger) +You can download this Gem from [GitHub Packages](https://github.com/github/redacting-logger/pkgs/rubygems/redacting-logger) Via a Gemfile: @@ -27,7 +19,9 @@ Via a Gemfile: source "https://rubygems.org" -gem "redacting-logger", "~> X.X.X" # Replace X.X.X with the latest version +source "https://rubygems.pkg.github.com/github" do + gem "redacting-logger", "~> X.X.X" # Replace X.X.X with the latest version +end ``` ## Usage 💻 diff --git a/lib/version.rb b/lib/version.rb index 22cb395..da68d5d 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -2,6 +2,6 @@ module RedactingLogger module Version - VERSION = "0.1.0" + VERSION = "0.2.0" end end