Skip to content

Commit

Permalink
Fix after zeitwerkify (#142)
Browse files Browse the repository at this point in the history
[changelog]

version: unreleased
changed: "Updated to work with latest dry-events and dry-monads using Zeitwerk for auto-loading (see #142) (@kzaitsev)"
  • Loading branch information
kzaitsev committed Oct 21, 2022
1 parent 9e24503 commit 4fbe3ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dry-transaction.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Gem::Specification.new do |spec|

# to update dependencies edit project.yml
spec.add_runtime_dependency "dry-container", ">= 0.2.8"
spec.add_runtime_dependency "dry-events", ">= 0.1.0"
spec.add_runtime_dependency "dry-events", ">= 0.4.0"
spec.add_runtime_dependency "dry-matcher", ">= 0.7.0"
spec.add_runtime_dependency "dry-monads", ">= 0.4.0"
spec.add_runtime_dependency "dry-monads", ">= 0.5.0"

end
2 changes: 1 addition & 1 deletion lib/dry/transaction.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require "dry/monads/result"
require "dry/monads"
require "dry/transaction/version"
require "dry/transaction/step_adapters"
require "dry/transaction/builder"
Expand Down
4 changes: 2 additions & 2 deletions lib/dry/transaction/step.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require 'dry/monads/result'
require 'dry/events/publisher'
require 'dry/monads'
require 'dry/events'
require 'dry/transaction/step_failure'
require 'dry/transaction/step_adapter'

Expand Down

0 comments on commit 4fbe3ae

Please sign in to comment.