gem_lookup 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea4c29684d8d8e1793d83c9701977286699eda4c5af38f3be1b31f710828d3eb
4
- data.tar.gz: c9d2b95d49487ab2f20958d1ff4b84a2ea98718dc239433e69a6026efcd83336
3
+ metadata.gz: d37077890fa8e9ebfbdbed38a5828d9f95d13fd0615a61ada4e65da4b96ef11e
4
+ data.tar.gz: 64dbe1227bb5497256f1afe0bc36c42ca0a015b88e317b4c944dc0b2f326709a
5
5
  SHA512:
6
- metadata.gz: ca6b3577faba2d35db8bb4c0ecef4ce24b37d6f575e363e5b27201d4bafeecc3707b7f917ba443a8e463f2ed1156a6082925fc64b9c0a83832d450ef83785a6e
7
- data.tar.gz: d4d157f702b630d14d1cd7527b0141a3a5383cb0960d2b2ade4c3cb3d30ac86547f4345444d898c3e632a6b58a7030aaf433c2f5eebf18133cea497dfff2d309
6
+ metadata.gz: 20dd318394e040658c18dfb9768e65f10e5b6bd0bb89eca9f0f009683be331ce252a0a22f8e24e74b076f806048b0362d3e0c1d14330814e6eea06ab2211934e
7
+ data.tar.gz: 8e4bb2b8000140f97b1016b5b60e4b82f11e479d006b5844c1b1fa07c11dbb8085259dfb75e9aaf5dbfe119d09c20c7fac3282b378153ca1998761a7922a429c
@@ -5,7 +5,7 @@ jobs:
5
5
  strategy:
6
6
  fail-fast: false
7
7
  matrix:
8
- ruby: [2.4, 2.5, 2.6, 2.7, 3.0, head]
8
+ ruby: [2.6, 2.7, 3.0, head]
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
11
  - uses: actions/checkout@v2
data/.rubocop.yml CHANGED
@@ -7,6 +7,8 @@ AllCops:
7
7
  Exclude:
8
8
  - 'vendor/**/*'
9
9
 
10
+ Bundler/GemFilename:
11
+ Enabled: false
10
12
  Gemspec/RequiredRubyVersion:
11
13
  Enabled: false
12
14
  Layout/LineLength:
data/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ 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.3.0] - 2022-05-13
9
+
10
+ ### Added
11
+
12
+ * Ruby 3.1 support.
13
+
14
+ ### Removed
15
+
16
+ * Ruby 2.5 support.
17
+ * Ruby 2.4 support.
18
+
8
19
  ## [1.2.1] - 2021-07-22
9
20
 
10
21
  ### Changed
data/gem_lookup.gemspec CHANGED
@@ -18,11 +18,12 @@ Gem::Specification.new do |spec|
18
18
  spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
19
19
 
20
20
  spec.metadata = {
21
- 'bug_tracker_uri' => 'https://github.com/trueheart78/gem_lookup/issues',
22
- 'changelog_uri' => 'https://github.com/trueheart78/gem_lookup/blob/main/CHANGELOG.md',
23
- 'documentation_uri' => spec.homepage,
24
- 'homepage_uri' => spec.homepage,
25
- 'source_code_uri' => "https://github.com/trueheart78/gem_lookup/tree/v#{GemLookup::VERSION}"
21
+ 'bug_tracker_uri' => 'https://github.com/trueheart78/gem_lookup/issues',
22
+ 'changelog_uri' => 'https://github.com/trueheart78/gem_lookup/blob/main/CHANGELOG.md',
23
+ 'documentation_uri' => spec.homepage,
24
+ 'homepage_uri' => spec.homepage,
25
+ 'source_code_uri' => "https://github.com/trueheart78/gem_lookup/tree/v#{GemLookup::VERSION}",
26
+ 'rubygems_mfa_required' => 'true'
26
27
  }
27
28
 
28
29
  # Specify which files should be added to the gem when it is released.
data/init/bundler.rb CHANGED
@@ -3,4 +3,4 @@
3
3
  require 'rubygems'
4
4
  require 'bundler'
5
5
 
6
- Bundler.require(:default, ENV['APP_ENV'].to_sym) unless ENV['APP_ENV'] == 'production'
6
+ Bundler.require(:default, ENV['APP_ENV'].to_sym) unless ENV.fetch('APP_ENV', nil) == 'production'
data/init/zeitwerk.rb CHANGED
@@ -8,7 +8,7 @@ root_dir = File.expand_path(File.dirname(File.dirname(__FILE__)))
8
8
 
9
9
  loader.push_dir(File.join(root_dir, 'lib'))
10
10
 
11
- if ENV['APP_ENV'] != 'production'
11
+ if ENV.fetch('APP_ENV', nil) != 'production'
12
12
  loader.push_dir(File.join(root_dir, 'spec'))
13
13
  loader.ignore(File.join(root_dir, '**', '*_spec.rb'))
14
14
  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.1'
5
+ VERSION = '1.3.0'
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.1
4
+ version: 1.3.0
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-22 00:00:00.000000000 Z
11
+ date: 2022-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -102,7 +102,8 @@ 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.1
105
+ source_code_uri: https://github.com/trueheart78/gem_lookup/tree/v1.3.0
106
+ rubygems_mfa_required: 'true'
106
107
  post_install_message:
107
108
  rdoc_options: []
108
109
  require_paths:
@@ -118,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
119
  - !ruby/object:Gem::Version
119
120
  version: '0'
120
121
  requirements: []
121
- rubygems_version: 3.2.24
122
+ rubygems_version: 3.3.13
122
123
  signing_key:
123
124
  specification_version: 4
124
125
  summary: Retrieves gem-related information from https://rubygems.org