Skip to content

Commit 4a02498

Browse files
committed
Fix require paths
1 parent 916f613 commit 4a02498

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env rake
22

33
require_relative './lib/concurrent/version'
4-
require_relative './lib/concurrent/edge/version'
54
require_relative './lib/extension_helper'
65

76
## load the two gemspec files
@@ -22,7 +21,7 @@ else
2221
CORE_GEM = "#{GEM_NAME}-#{Concurrent::VERSION}.gem"
2322
EXT_GEM = "#{GEM_NAME}-ext-#{Concurrent::VERSION}.gem"
2423
NATIVE_GEM = "#{GEM_NAME}-ext-#{Concurrent::VERSION}-#{Gem::Platform.new(RUBY_PLATFORM)}.gem"
25-
EDGE_GEM = "#{GEM_NAME}-edge-#{Concurrent::Edge::VERSION}.gem"
24+
EDGE_GEM = "#{GEM_NAME}-edge-#{Concurrent::EDGE_VERSION}.gem"
2625
end
2726

2827
## safely load all the rake tasks in the `tasks` directory

lib/concurrent-edge.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
require 'concurrent'
2-
require 'concurrent-edge/version'
32

4-
require 'concurrent-edge/actor'
5-
require 'concurrent-edge/channel'
3+
require 'concurrent/actor'
4+
require 'concurrent/channel'
65

76

0 commit comments

Comments
 (0)