Skip to content

Commit

Permalink
build: remove version constraint on active-support
Browse files Browse the repository at this point in the history
Motivation
----------
This will require the Active Support Core extensions when needed.
https://guides.rubyonrails.org/active_support_core_extensions.html

I think it's fine to lift the version constraint altogether.

How to test
-----------
1. `bundle install`
2. `bundle exec rake`
3. Tests pass (on my machine one test fails, but that's unrelated)
  • Loading branch information
roschaefer committed May 23, 2024
1 parent c8da284 commit 06ba232
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/threema/send.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# frozen_string_literal: true
require 'active_support'
require "active_support/core_ext"

require 'threema/exceptions'
require 'threema/send/simple'
Expand Down
2 changes: 1 addition & 1 deletion threema.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.files = Dir['{lib}/**/*']
spec.require_paths = ['lib']

spec.add_runtime_dependency 'activesupport', '<= 7.0.8'
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'dotenv'
spec.add_runtime_dependency 'mimemagic'
spec.add_runtime_dependency 'mime-types'
Expand Down

0 comments on commit 06ba232

Please sign in to comment.