Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## [Unreleased]
* Support Rails 7.1
* Convenience updates for rake bundle:update

## 7.2.1 / 2023-09-04
## Changed
Expand Down
7 changes: 4 additions & 3 deletions lib/tasks/audit_bundle.rake
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,10 @@ namespace :bundle do
manually add any additional platform-specific gems required (e.g. for nokogiri),
re-run tests locally, then run the following to commit the changes:

$ git rm #{files_to_git_rm.join(' ')}
$ git add #{files_to_git_add.join(' ')}
$ git commit -m '# Bump #{gem} to #{new_gem_version2}'
$ ( git rm #{files_to_git_rm.join(' ')}
git add #{files_to_git_add.join(' ')}
git commit -m '# Bump #{gem} to #{new_gem_version2}'
)
MSG
end
end