Skip to content

Commit fe386d4

Browse files
committed
Fix edge version definition placement
1 parent d8b2eca commit fe386d4

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'https://rubygems.org'
22

33
require File.join(File.dirname(__FILE__), 'lib/concurrent/version')
4+
require File.join(File.dirname(__FILE__ ), 'lib-edge/concurrent/edge/version')
45

56
no_path = ENV['NO_PATH']
67
options = no_path ? {} : { path: '.' }

concurrent-ruby-edge.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.join(File.dirname(__FILE__ ), 'lib/concurrent/version')
1+
require File.join(File.dirname(__FILE__ ), 'lib-edge/concurrent/edge/version')
22

33
Gem::Specification.new do |s|
44
git_files = `git ls-files`.split("\n")

lib-edge/concurrent-edge.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
require 'concurrent'
22

3+
require 'concurrent/edge/version'
4+
35
require 'concurrent/actor'
46
require 'concurrent/agent'
57
require 'concurrent/channel'

lib-edge/concurrent/edge/version.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Concurrent
2+
EDGE_VERSION = '0.5.0'
3+
end

lib/concurrent/version.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
module Concurrent
22
VERSION = '1.1.4'
3-
EDGE_VERSION = '0.4.1'
43
end

0 commit comments

Comments
 (0)