Update Gemfile.

This commit is contained in:
BoHung Chiu 2021-03-26 22:38:17 +08:00
parent 6b82bd0a50
commit 00f815b4c3
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ gem 'dynamic_form'
#built in modules
eval(File.read(File.dirname(__FILE__) + '/built_in_extensions.rb'))
#modules installed from the store
unless File.exist?(File.dirname(__FILE__) + '/downloaded_extensions.rb')
File.open(File.dirname(__FILE__) + '/downloaded_extensions.rb','w+'){|f| f.write ""}
end
eval(File.read(File.dirname(__FILE__) + '/downloaded_extensions.rb'))
if File.exists?(File.dirname(__FILE__) + '/extra_gems.rb')
eval(File.read(File.dirname(__FILE__) + '/extra_gems.rb'))