Update Gemfile.

This commit is contained in:
BoHung Chiu 2022-04-13 23:31:07 +08:00
parent a8bc48eef4
commit 0c750284d4
1 changed files with 5 additions and 0 deletions

View File

@ -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