Skip to content

Commit

Permalink
Adding Ruby 3+ compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
simonc committed May 20, 2022
1 parent d36b3da commit 6ba00de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ rvm:
- 2.5
- 2.6
- 2.7
- 3.0
- 3.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## HEAD

* Adding Ruby 3+ compatibility

## 0.2.0

* Adding Ruby 2.7 compatibility
Expand Down
2 changes: 1 addition & 1 deletion lib/business_pipeline/context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def success?
end

private def update!(context)
context.each { |key, value| modifiable?[key.to_sym] = value }
context.each { |key, value| self[key.to_sym] = value }
end
end
end

0 comments on commit 6ba00de

Please sign in to comment.