bundler-gem_bytes 0.2.4 → 0.2.5
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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +8 -0
- data/lib/bundler/gem_bytes/actions/gemspec.rb +3 -3
- data/lib/bundler/gem_bytes/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66a55b5a85a0615e87c15762c0220a82d015fd59d764152fc7d3aa4a0f2f56fc
|
|
4
|
+
data.tar.gz: '08ba9bc206dce2fe4696bf42de35bd02e4b272dc2d5c9c18d8c485e40e88bf77'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9be133f154453fb544ff5b2112e4ce2b6fad0d2565b1d290fc5db06ee3a9dceb98c558fcc1c10dfbb5e86c37dfdd3cb117d582adfad4225f66d23eca1f84c360
|
|
7
|
+
data.tar.gz: 9fe79c309ff3c83dfc84d365c8fd363be8087a718519785e32cc23aba5b678ea0413482e41df96eaa7fd9b047fbd45df993a36bbd4d1d79289618c77322a80e4
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to the process_executer gem will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.5](https://github.com/main-branch/bundler-gem_bytes/compare/v0.2.4...v0.2.5) (2026-04-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
* **dependencies:** Update dependencies for all GitHub Actions workflows ([2f2b49c](https://github.com/main-branch/bundler-gem_bytes/commit/2f2b49c11ff331178438aedaa407dabc8f60d272))
|
|
14
|
+
* **rubocop:** Fix rubocop offenses from new cops ([9e9d138](https://github.com/main-branch/bundler-gem_bytes/commit/9e9d1388a535c35ea06900c76176f61fd09f422d))
|
|
15
|
+
|
|
8
16
|
## [0.2.4](https://github.com/main-branch/bundler-gem_bytes/compare/v0.2.3...v0.2.4) (2025-04-18)
|
|
9
17
|
|
|
10
18
|
|
|
@@ -136,7 +136,7 @@ module Bundler
|
|
|
136
136
|
def on_send(node)
|
|
137
137
|
return unless processing_gemspec_block?
|
|
138
138
|
|
|
139
|
-
handle_dependency(node) || handle_attribute(node)
|
|
139
|
+
handle_dependency?(node) || handle_attribute?(node)
|
|
140
140
|
end
|
|
141
141
|
|
|
142
142
|
# Removes a dependency from the Gem::Specification block
|
|
@@ -204,7 +204,7 @@ module Bundler
|
|
|
204
204
|
# @param node [Parser::AST::Node] the node to check if it is a dependency
|
|
205
205
|
# @return [Boolean] true if the node is a dependency, false otherwise
|
|
206
206
|
# @api private
|
|
207
|
-
def handle_dependency(node)
|
|
207
|
+
def handle_dependency?(node)
|
|
208
208
|
return false unless (match = dependency_pattern.match(node))
|
|
209
209
|
|
|
210
210
|
dependencies << DependencyNode.new(node, Dependency.new(*match))
|
|
@@ -216,7 +216,7 @@ module Bundler
|
|
|
216
216
|
# @param node [Parser::AST::Node] the node to check if it is an attribute
|
|
217
217
|
# @return [Boolean] true if the node is an attribute, false otherwise
|
|
218
218
|
# @api private
|
|
219
|
-
def handle_attribute(node)
|
|
219
|
+
def handle_attribute?(node)
|
|
220
220
|
return false unless (match = attribute_pattern.match(node))
|
|
221
221
|
return false unless match[0].end_with?('=')
|
|
222
222
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler-gem_bytes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Couball
|
|
@@ -291,8 +291,8 @@ metadata:
|
|
|
291
291
|
allowed_push_host: https://rubygems.org
|
|
292
292
|
homepage_uri: https://github.com/main-branch/bundler-gem_bytes
|
|
293
293
|
source_code_uri: https://github.com/main-branch/bundler-gem_bytes
|
|
294
|
-
documentation_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.
|
|
295
|
-
changelog_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.
|
|
294
|
+
documentation_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.5
|
|
295
|
+
changelog_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.5/file/CHANGELOG.md
|
|
296
296
|
bug_tracker_uri: https://github.com/main-branch/bundler-gem_bytes/issues
|
|
297
297
|
rubygems_mfa_required: 'true'
|
|
298
298
|
rdoc_options: []
|
|
@@ -309,7 +309,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
309
309
|
- !ruby/object:Gem::Version
|
|
310
310
|
version: '0'
|
|
311
311
|
requirements: []
|
|
312
|
-
rubygems_version:
|
|
312
|
+
rubygems_version: 4.0.6
|
|
313
313
|
specification_version: 4
|
|
314
314
|
summary: A bundler plugin that adds features to your existing Ruby Gems project
|
|
315
315
|
test_files: []
|