Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bmt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.summary = 'Ruby wrapper for Bugcrowd\'s Methodology Taxonomy'
spec.homepage = 'https://github.com/bugcrowd/bmt-ruby'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.{rb,json}']
spec.files = Dir['lib/**/*']
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The wildcard pattern lib/**/* may include unintended files like backup files, temporary files, or development artifacts. Consider using a more specific pattern like Dir['lib/**/*.{rb,json,yml,yaml,xml,txt}'] to explicitly include only the data file types you need.

Suggested change
spec.files = Dir['lib/**/*']
spec.files = Dir['lib/**/*.{rb,json,yml,yaml,xml,txt}']

Copilot uses AI. Check for mistakes.
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.1'

Expand Down
2 changes: 1 addition & 1 deletion lib/bmt/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Bmt
VERSION = '0.7.0'.freeze
VERSION = '0.7.1'.freeze
end