Skip to content

Commit

Permalink
Fix edge version definition placement
Browse files Browse the repository at this point in the history
  • Loading branch information
pitr-ch committed Mar 9, 2019
1 parent d8b2eca commit fe386d4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
source 'https://rubygems.org'

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

no_path = ENV['NO_PATH']
options = no_path ? {} : { path: '.' }
Expand Down
2 changes: 1 addition & 1 deletion concurrent-ruby-edge.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require File.join(File.dirname(__FILE__ ), 'lib/concurrent/version')
require File.join(File.dirname(__FILE__ ), 'lib-edge/concurrent/edge/version')

Gem::Specification.new do |s|
git_files = `git ls-files`.split("\n")
Expand Down
2 changes: 2 additions & 0 deletions lib-edge/concurrent-edge.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require 'concurrent'

require 'concurrent/edge/version'

require 'concurrent/actor'
require 'concurrent/agent'
require 'concurrent/channel'
Expand Down
3 changes: 3 additions & 0 deletions lib-edge/concurrent/edge/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Concurrent
EDGE_VERSION = '0.5.0'
end
1 change: 0 additions & 1 deletion lib/concurrent/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
module Concurrent
VERSION = '1.1.4'
EDGE_VERSION = '0.4.1'
end

0 comments on commit fe386d4

Please sign in to comment.