File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env rake
2
2
3
3
require_relative './lib/concurrent/version'
4
- require_relative './lib/concurrent/edge/version'
5
4
require_relative './lib/extension_helper'
6
5
7
6
## load the two gemspec files
22
21
CORE_GEM = "#{ GEM_NAME } -#{ Concurrent ::VERSION } .gem"
23
22
EXT_GEM = "#{ GEM_NAME } -ext-#{ Concurrent ::VERSION } .gem"
24
23
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"
26
25
end
27
26
28
27
## safely load all the rake tasks in the `tasks` directory
Original file line number Diff line number Diff line change 1
1
require 'concurrent'
2
- require 'concurrent-edge/version'
3
2
4
- require 'concurrent-edge /actor'
5
- require 'concurrent-edge /channel'
3
+ require 'concurrent/actor'
4
+ require 'concurrent/channel'
6
5
7
6
You can’t perform that action at this time.
0 commit comments