This commit is contained in:
BOHUNG 2020-04-01 17:48:45 +08:00
parent 162f964909
commit b2c7bf66a1
1 changed files with 9 additions and 11 deletions

View File

@ -77,21 +77,19 @@ change_html_old = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil
change_html_new = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil? ? "/assets/default-site-logo.png" : site.site_logo_1.url) rescue "/assets/default-site-logo.png"))'
begin
@file_text = File.read(ENV['PWD']+'/app/helpers/application_helper.rb')
@f = File.open(ENV['PWD']+'/app/helpers/application_helper.rb','w')
if @file_text.include?(change_html_old)
@file_text = @file_text.gsub(change_html_old,change_html_new)
@f.write(@file_text)
elsif (!@file_text.include?(change_html_old) && !@file_text.include?(change_html_new))
insert_index = @file_text.index('html.gsub("%7B%7Blogo_url%7D%7D"')
@file_text.insert(insert_index,change_html_new+"\n")
@f.write(@file_text)
File.open(ENV['PWD']+'/app/helpers/application_helper.rb','w') do |f|
if @file_text.include?(change_html_old)
@file_text = @file_text.gsub(change_html_old,change_html_new)
f.write(@file_text)
elsif (!@file_text.include?(change_html_old) && !@file_text.include?(change_html_new))
insert_index = @file_text.index('html.gsub("%7B%7Blogo_url%7D%7D"')
@file_text.insert(insert_index,change_html_new+"\n")
f.write(@file_text)
end
end
@f.close
puts "finish change application_helper.rb in #{ENV['PWD']}/app/helpers/"
puts @f.closed?
rescue => e
puts "Permission denied in #{ENV['PWD']}/app/helpers/application_helper.rb"
@f.close
end
begin
Site.first.update(:display_title_in_frontend=>false)