bundleup 2.5.0 → 2.5.2

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: 7138e260f664723083bc97c2c83d18f2e70fa92edbe83a6f04dc22f5e261e10a
4
- data.tar.gz: aa2863a81228f70676a2314f3889ccc4fa6b3b77bd112f6f97d9d81da86de977
3
+ metadata.gz: 76a75ee06b820eee49ff820c406594ccc5d6a9bd0e016ca7bedb5b0eccf09e83
4
+ data.tar.gz: '06873b9d3d19cbc0440483a6d7bff2f3e79baf3ba63ac2edaa0c83eb799abf8d'
5
5
  SHA512:
6
- metadata.gz: ce2447a3e3c7d0873762d0e3ab990f64538c84b4da4540896a1a0c60932db40c1b99a02876393d5754fdb4715ee145e04e02999ebf7cab3c591fe20a17b7a524
7
- data.tar.gz: a35f9009ac1fb4f6d5b3e39653c1614843b5b50b862859ec58a96a84b2a549a40543b1827eeaf1e103151e8cfee4aabcc0d9e8e9812149627c643a5624d12f23
6
+ metadata.gz: 21e27fc724c08b542593e4d916a938c5929afdb42a0da366ef74e6e736f54bfec9730bb247000307fc632b4806f194c33953d31e689e5062f198e6964901ba09
7
+ data.tar.gz: 2bc3e23885f5e290f826b959294db63ffb22d2900b31e3d196ee1eac5ce50ea8d6ed56c66d273bc37df56e4fdcba612159aa969f9b8f8efd588706b17703d69f
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 Matt Brictson
3
+ Copyright (c) 2025 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
@@ -1,3 +1,7 @@
1
+ 📣 **I am no longer actively developing this project.** I am focusing my attention on building [mattbrictson/bundle_update_interactive](https://github.com/mattbrictson/bundle_update_interactive) instead. It has many of the same features as `bundleup`, so please check it out! In the meantime, `bundleup` will continue to receive occasional maintenance, but likely no new capabilities.
2
+
3
+ ---
4
+
1
5
  # bundleup
2
6
 
3
7
  [![Gem Version](https://img.shields.io/gem/v/bundleup)](https://rubygems.org/gems/bundleup)
@@ -106,7 +110,6 @@ if cli.updated_gems.any?
106
110
  end
107
111
  ```
108
112
 
109
-
110
113
  ## How bundleup works
111
114
 
112
115
  bundleup starts by making a backup copy of your Gemfile.lock. Next it runs `bundle check` (and `bundle install` if any gems are missing in your local environment), `bundle list`, then `bundle update` and `bundle list` again to find what gems versions are being used before and after Bundler does its updating magic. (Since gems are actually being installed into your Ruby environment during these steps, the process may take a few moments to complete, especially if gems with native extensions need to be compiled.)
@@ -117,18 +120,11 @@ After displaying its findings, bundleup gives you the option of keeping the chan
117
120
 
118
121
  ## Roadmap
119
122
 
120
- bundleup is very simple at this point, but it could be more. Some possibilities:
121
-
122
- - Automatically commit the Gemfile.lock changes with a nice commit message
123
- - Integrate with bundler-audit to mark upgrades that have important security fixes
124
- - Display relevant CHANGELOG entries for major upgrades
125
- - Non-interactive mode
126
-
127
- If you have other ideas, open an issue on GitHub!
123
+ bundleup is in maintenance mode; no new features are planned.
128
124
 
129
125
  ## Contributing
130
126
 
131
- Code contributions are also welcome! Read [CONTRIBUTING.md](CONTRIBUTING.md) to get started.
127
+ Code contributions are welcome! Read [CONTRIBUTING.md](CONTRIBUTING.md) to get started.
132
128
 
133
129
  [bundler]: http://bundler.io
134
130
  [semver]: http://semver.org
@@ -1,3 +1,3 @@
1
1
  module Bundleup
2
- VERSION = "2.5.0".freeze
2
+ VERSION = "2.5.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundleup
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-07-09 00:00:00.000000000 Z
10
+ date: 2025-02-08 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Use `bundleup` whenever you want to update the locked Gemfile dependencies
14
13
  of a Ruby project. It shows exactly what gems will be updated with color output
@@ -48,7 +47,6 @@ metadata:
48
47
  source_code_uri: https://github.com/mattbrictson/bundleup
49
48
  homepage_uri: https://github.com/mattbrictson/bundleup
50
49
  rubygems_mfa_required: 'true'
51
- post_install_message:
52
50
  rdoc_options: []
53
51
  require_paths:
54
52
  - lib
@@ -63,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
63
61
  - !ruby/object:Gem::Version
64
62
  version: '0'
65
63
  requirements: []
66
- rubygems_version: 3.5.11
67
- signing_key:
64
+ rubygems_version: 3.6.3
68
65
  specification_version: 4
69
66
  summary: A friendlier command-line interface for Bundler’s `update` and `outdated`
70
67
  commands.