brakeman-min 7.0.1 → 7.0.2

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: baa16f18d1ceaf0c04654b5b84547e3bb0cd23368409b980742df987f88df059
4
- data.tar.gz: 90b31d54feaad0b87250d7e7599c8bcbe4d290a4bca3132e4e60ea2b83af6e25
3
+ metadata.gz: 5e8740dbaf52c1cba5a1c5afde01f41180ecf808e417d0cdcc274affbdcc684d
4
+ data.tar.gz: 83180ce5a3bfbf62f03ddf4fdbdf396ab66fc3a1b41dcdc5d5ff59d0699d5cff
5
5
  SHA512:
6
- metadata.gz: ac5c7a446bd842ccf61292ac59505b95f9fc5840ef5749f08f39ce9c4a905d8bf24045377b1ccb035d0f3b5810984c9564d962d1ba27da89f0129044e522f81d
7
- data.tar.gz: 54e8dd54503821cb93b9c11aa6e69aaec2da4ba81308d507df9721fe50e2f21cb2124a8d2f46b9e907696f642c137dc05d8d51bcc4d8fb8e794b51b30b186b6d
6
+ metadata.gz: 0c149490c10d73ac6d43f310b97c6bbed414062c544e4d8de4cd6e0df7bbf898973b09f7e17fafe1b689f66fad7e41a31e82eb710043497e00aa848b3aadeeb9
7
+ data.tar.gz: c32763c096908fbd24f0f418168d6e59879bf5aa03626d45fced5eb013d4fed1fe606f448a257379132af3675cc6fcc2563400b3eda5005669d530fb5e74200c
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 7.0.2 - 2025-04-04
2
+
3
+ * Fix error with empty `BUNDLE_GEMFILE` env variable
4
+
1
5
  # 7.0.1 - 2025-04-03
2
6
 
3
7
  * Avoid warning on evaluation of plain strings
@@ -1,3 +1,3 @@
1
1
  module Brakeman
2
- Version = "7.0.1"
2
+ Version = "7.0.2"
3
3
  end
data/lib/brakeman.rb CHANGED
@@ -130,7 +130,7 @@ module Brakeman
130
130
 
131
131
  # Use ENV value only if option was not already explicitly set
132
132
  # (i.e. prefer commandline option over environment variable).
133
- if options[:gemfile].nil? and ENV['BUNDLE_GEMFILE']
133
+ if options[:gemfile].nil? and ENV['BUNDLE_GEMFILE'] and not ENV['BUNDLE_GEMFILE'].empty?
134
134
  options[:gemfile] = ENV['BUNDLE_GEMFILE']
135
135
  end
136
136
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brakeman-min
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.1
4
+ version: 7.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Collins