Skip to content

Commit

Permalink
Fix Rails dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermoap committed Oct 24, 2023
1 parent 6a72977 commit 2f41559
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PATH
remote: .
specs:
active_outbox (0.0.4)
active_outbox (0.0.5)
dry-configurable (~> 1.0)
rails (~> 6.1)
rails (>= 6.1)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions active_outbox.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |spec|
spec.files = Dir['LICENSE.txt', 'README.md', 'lib/**/*', 'lib/active_outbox.rb']
spec.name = 'active_outbox'
spec.summary = 'A Transactional Outbox implementation for ActiveRecord'
spec.version = '0.0.4'
spec.version = '0.0.5'

spec.email = 'guillermoaguirre1@gmail.com'
spec.executables = ['outbox']
Expand All @@ -14,5 +14,5 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 3.0'

spec.add_dependency 'dry-configurable', '~> 1.0'
spec.add_dependency 'rails', '~> 6.1'
spec.add_dependency 'rails', '>= 6.1'
end

0 comments on commit 2f41559

Please sign in to comment.