Skip to content

Commit

Permalink
Merge pull request #68 from Eazybright/fix/activesupport-dependency-v…
Browse files Browse the repository at this point in the history
…ersion-constraint

fix dependency version constraint
  • Loading branch information
unicodeveloper authored Jan 19, 2024
2 parents bbfcbec + b9d0d9c commit 16b0c0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ gemspec
gem "rake", "~> 13.0"

group :test do
gem 'rspec'
gem "rspec"
gem "webmock"
end

gem "exponential-backoff"
gem 'mocha'
gem "mocha"
gem "rubocop", "~> 1.21"
gem 'uuid', '~> 2.3', '>= 2.3.9'
gem "uuid", "~> 2.3", ">= 2.3.9"

# gem 'pry-debugger-jruby'
2 changes: 1 addition & 1 deletion novu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"

spec.add_dependency "activesupport", "~> 6.1", ">= 6.1.7.2"
spec.add_dependency "activesupport", ">= 6.1"
spec.add_dependency "exponential-backoff", "~> 0.0.4"
spec.add_dependency "httparty", "~> 0.21"
spec.add_dependency "uuid", "~> 2.3", ">= 2.3.9"
Expand Down

0 comments on commit 16b0c0a

Please sign in to comment.