bundleup 2.5.4 → 2.6.1

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: 4acc609d9364e28b9d7f5d0f883cb475333805ad89c2eff40bd8af3be34b13ab
4
- data.tar.gz: d854abbba65bd99e2c7f7c975d3b44a21c7d4f5f4a361ae5430596c44684b958
3
+ metadata.gz: fe30592638f626044dc83016ce1fa4c686524e3c3cd47e312df7f2917d2a22d5
4
+ data.tar.gz: fdfcc3a764a48345a46b857cc52319b2ed93bed16822e8ab58fd142b203b80bb
5
5
  SHA512:
6
- metadata.gz: 78fecdc8b12ea923b94edf682c9a705ea6a8a1be103bddf41b1d79a14c456fb3d10f3fe36103a34d69a96b71a83b91184fe11661bbadc4eb1fb4b248c8392f10
7
- data.tar.gz: 004afdc7230f3b66e845e8df6e7c6e27887b4759db4378b7a87a6b651b8cca9054becd73c3dd522a4125e696cd24a1b91acc81fed351723d19ef9c44d6c00d30
6
+ metadata.gz: 39c4309e8123199a34c6f2a31fa220cf75ac4cec5b3604dbe55536476853e28e5342166ba7d2f4cbb30a77c31ac0e85066952312344aabeaf687a0878340e431
7
+ data.tar.gz: 74a0d74a8a0750e43eb2b69c93493f65720823d97af245f6abae1568c3a66a7f222a0c3e59456d10776abc4d6e1f94561213f6a7066c66140496c936b116d61f
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2025 Matt Brictson
3
+ Copyright (c) 2026 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -24,7 +24,7 @@ Here it is in action:
24
24
  ## Requirements
25
25
 
26
26
  - Bundler 1.16 or later
27
- - Ruby 3.1 or later
27
+ - Ruby 3.2 or later
28
28
 
29
29
  ## Usage
30
30
 
@@ -11,8 +11,8 @@ module Bundleup
11
11
  end
12
12
 
13
13
  def initialize(*paths)
14
- @original_contents = paths.each_with_object({}) do |path, hash|
15
- hash[path] = File.read(path)
14
+ @original_contents = paths.to_h do |path|
15
+ [path, File.read(path)]
16
16
  end
17
17
  end
18
18
 
data/lib/bundleup/cli.rb CHANGED
@@ -2,7 +2,8 @@ require "forwardable"
2
2
 
3
3
  module Bundleup
4
4
  class CLI
5
- Error = Class.new(StandardError)
5
+ class Error < StandardError
6
+ end
6
7
 
7
8
  include Colors
8
9
  extend Forwardable
@@ -1,3 +1,3 @@
1
1
  module Bundleup
2
- VERSION = "2.5.4".freeze
2
+ VERSION = "2.6.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundleup
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.4
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
@@ -54,14 +54,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - ">="
56
56
  - !ruby/object:Gem::Version
57
- version: '3.1'
57
+ version: '3.2'
58
58
  required_rubygems_version: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  requirements: []
64
- rubygems_version: 3.6.9
64
+ rubygems_version: 4.0.10
65
65
  specification_version: 4
66
66
  summary: A friendlier command-line interface for Bundler’s `update` and `outdated`
67
67
  commands.