Skip to content

Commit

Permalink
Make activesupport gem optional
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF authored Dec 10, 2022
1 parent bf02b67 commit 91f05f7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ source 'https://rubygems.org'

gemspec

if RUBY_VERSION < '2.7.0'
gem 'activesupport', '< 6'
else
gem 'activesupport', :git => 'https://github.com/rails/rails', :branch => 'main'
if ENV['MBCHARS'] # see spec/environment.rb
if RUBY_VERSION < '2.7.0'
gem 'activesupport', '< 6'
else
gem 'activesupport', :git => 'https://github.com/rails/rails', :branch => 'main'
end
end

gem 'jruby-openssl', :platforms => :jruby
Expand Down

0 comments on commit 91f05f7

Please sign in to comment.