gem_lookup 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2976c673e60604074127024d9d215216716d88d7c4e5171ec999687e0d1833c9
4
- data.tar.gz: 749fcbd0c545af2aff1ab70521347fb2145ca995da5029b892ea9a74e5f6352a
3
+ metadata.gz: ea4c29684d8d8e1793d83c9701977286699eda4c5af38f3be1b31f710828d3eb
4
+ data.tar.gz: c9d2b95d49487ab2f20958d1ff4b84a2ea98718dc239433e69a6026efcd83336
5
5
  SHA512:
6
- metadata.gz: 67eec1ae007ffe02d578db7d34069bf62716223f996d291a58d4155ed4ca2dcc8caed3dd9a398083e1adb5ab481d7c79f751da62d10318a6101ddfd9bd7d271b
7
- data.tar.gz: 4ffe8aaa18aec93dcef77a66e5039e6995d924e457c3e6603204e126c6a9b6d1a86b25adff9d23400eacf547c86caf4703f222417ec25366d99276c7b30b4999
6
+ metadata.gz: ca6b3577faba2d35db8bb4c0ecef4ce24b37d6f575e363e5b27201d4bafeecc3707b7f917ba443a8e463f2ed1156a6082925fc64b9c0a83832d450ef83785a6e
7
+ data.tar.gz: d4d157f702b630d14d1cd7527b0141a3a5383cb0960d2b2ade4c3cb3d30ac86547f4345444d898c3e632a6b58a7030aaf433c2f5eebf18133cea497dfff2d309
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog][changelog], and this project adheres to
6
6
  [Semantic Versioning][semver].
7
7
 
8
+ ## [1.2.1] - 2021-07-22
9
+
10
+ ### Changed
11
+
12
+ * Replaced colorization of light cyan with light blue.
13
+
8
14
  ## [1.2.0] - 2021-07-14
9
15
 
10
16
  ### Added
@@ -22,7 +22,7 @@ module GemLookup
22
22
  # Outputs the number of gems being queried.
23
23
  # @param num [Numeric] the number of gems.
24
24
  def gem_count(num:)
25
- puts "=> 🤔 #{num} gems".light_cyan
25
+ puts "=> 🤔 #{num} gems".light_blue
26
26
  end
27
27
 
28
28
  # Outputs the current batch and total number of batches
@@ -88,7 +88,7 @@ module GemLookup
88
88
  # @return [String] the changelog string.
89
89
  def changelog(changelog_uri:)
90
90
  if changelog_uri && !changelog_uri.empty?
91
- "==> 📑 #{changelog_uri}".light_cyan
91
+ "==> 📑 #{changelog_uri}".light_blue
92
92
  else
93
93
  '==> 📑 Unavailable'.light_red
94
94
  end
@@ -99,7 +99,7 @@ module GemLookup
99
99
  # @return [String] the mailing list string.
100
100
  def mailing_list(mailing_list_uri:)
101
101
  if mailing_list_uri && !mailing_list_uri.empty?
102
- "==> 💌 #{mailing_list_uri}".light_cyan
102
+ "==> 💌 #{mailing_list_uri}".light_blue
103
103
  else
104
104
  '==> 💌 Unavailable'.light_red
105
105
  end
@@ -22,7 +22,7 @@ module GemLookup
22
22
  # Outputs the number of gems being queried.
23
23
  # @param num [Numeric] the number of gems.
24
24
  def gem_count(num:)
25
- puts "=> Query: #{num} gems".light_cyan
25
+ puts "=> Query: #{num} gems".light_blue
26
26
  end
27
27
 
28
28
  # Outputs the current batch and total number of batches
@@ -92,7 +92,7 @@ module GemLookup
92
92
  # @return [String] the changelog string.
93
93
  def changelog(changelog_uri:)
94
94
  if changelog_uri && !changelog_uri.empty?
95
- "==> Changelog: #{changelog_uri}".light_cyan
95
+ "==> Changelog: #{changelog_uri}".light_blue
96
96
  else
97
97
  '==> Changelog: Unavailable'.light_red
98
98
  end
@@ -103,7 +103,7 @@ module GemLookup
103
103
  # @return [String] the mailing list string.
104
104
  def mailing_list(mailing_list_uri:)
105
105
  if mailing_list_uri && !mailing_list_uri.empty?
106
- "==> Mailing List: #{mailing_list_uri}".light_cyan
106
+ "==> Mailing List: #{mailing_list_uri}".light_blue
107
107
  else
108
108
  '==> Mailing List: Unavailable'.light_red
109
109
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module GemLookup
4
4
  # @return [String] the current version of the gem.
5
- VERSION = '1.2.0'
5
+ VERSION = '1.2.1'
6
6
 
7
7
  # @return [String] the name of the gem
8
8
  NAME = 'gem_lookup'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_lookup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Mills
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-14 00:00:00.000000000 Z
11
+ date: 2021-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -102,7 +102,7 @@ metadata:
102
102
  changelog_uri: https://github.com/trueheart78/gem_lookup/blob/main/CHANGELOG.md
103
103
  documentation_uri: https://github.com/trueheart78/gem_lookup
104
104
  homepage_uri: https://github.com/trueheart78/gem_lookup
105
- source_code_uri: https://github.com/trueheart78/gem_lookup/tree/v1.2.0
105
+ source_code_uri: https://github.com/trueheart78/gem_lookup/tree/v1.2.1
106
106
  post_install_message:
107
107
  rdoc_options: []
108
108
  require_paths:
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  - !ruby/object:Gem::Version
119
119
  version: '0'
120
120
  requirements: []
121
- rubygems_version: 3.2.19
121
+ rubygems_version: 3.2.24
122
122
  signing_key:
123
123
  specification_version: 4
124
124
  summary: Retrieves gem-related information from https://rubygems.org