Skip to content

Commit

Permalink
Merge pull request #92 from JNajera/master
Browse files Browse the repository at this point in the history
Fix deprecated File.exists? on ruby 3.2.0
  • Loading branch information
radar authored Dec 29, 2022
2 parents d7811c0 + 23ca89c commit 90839dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion by_star.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.0.0'

s.post_install_message = File.read('UPGRADING') if File.exists?('UPGRADING')
s.post_install_message = File.read('UPGRADING') if File.exist?('UPGRADING')

s.add_dependency "activesupport", ">= 3.2.0"

Expand Down

0 comments on commit 90839dc

Please sign in to comment.