Update Gemfile.
This commit is contained in:
parent
a8bc48eef4
commit
0c750284d4
|
@ -6,6 +6,11 @@ if $0.to_s.scan('bundle').length==0
|
|||
system("bundle install") if !flag
|
||||
}
|
||||
end
|
||||
if RUBY_VERSION.to_f <= 2.1
|
||||
gem 'concurrent-ruby', '~>1.1.9'
|
||||
else
|
||||
gem 'concurrent-ruby'
|
||||
end
|
||||
#built in modules
|
||||
eval(File.read(File.dirname(__FILE__) + '/built_in_extensions.rb'))
|
||||
#modules installed from the store
|
||||
|
|
Loading…
Reference in New Issue