Skip to content

Commit

Permalink
Update gemspec
Browse files Browse the repository at this point in the history
This test fails https://github.com/ruby/ruby/runs/6216873955?check_suite_focus=true

The sync tool changes the path structure of the gem so the version file is no longer in the same relative location.
  • Loading branch information
schneems committed Jul 26, 2022
1 parent 31c5fc5 commit ac7eb18
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/dead_end/dead_end.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# frozen_string_literal: true

require_relative "lib/dead_end/version"
begin
require_relative "lib/dead_end/version"
rescue LoadError # Fallback to load version file in ruby core repository
require_relative "version"
end

Gem::Specification.new do |spec|
spec.name = "dead_end"
Expand Down

0 comments on commit ac7eb18

Please sign in to comment.