test
This commit is contained in:
parent
5f3ad7bbf0
commit
6b800842c4
|
@ -78,7 +78,6 @@ change_html_new = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil
|
|||
begin
|
||||
@file_text = File.read(ENV['PWD']+'/app/helpers/application_helper.rb')
|
||||
@f = File.open(ENV['PWD']+'/app/helpers/application_helper.rb','w')
|
||||
puts @file_text
|
||||
if @file_text.include?(change_html_old)
|
||||
@file_text = @file_text.gsub(change_html_old,change_html_new)
|
||||
@f.write(@file_text)
|
||||
|
@ -87,6 +86,7 @@ begin
|
|||
@file_text.insert(insert_index,change_html_new+"\n")
|
||||
@f.write(@file_text)
|
||||
end
|
||||
puts @f.methods
|
||||
@f.close
|
||||
puts "finish change application_helper.rb in #{ENV['PWD']}/app/helpers/"
|
||||
rescue => e
|
||||
|
|
Loading…
Reference in New Issue