try
This commit is contained in:
parent
8e2dbdf778
commit
6516ff04fc
|
@ -11,7 +11,6 @@ begin
|
||||||
rescue
|
rescue
|
||||||
puts "There is an error in coppying jquery-ui"
|
puts "There is an error in coppying jquery-ui"
|
||||||
end
|
end
|
||||||
puts 111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
|
||||||
#end
|
#end
|
||||||
@original_dir = Dir.pwd
|
@original_dir = Dir.pwd
|
||||||
`cd "#{ENV['PWD']}" && git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/ && cd "#{@original_dir}"` #using git to add modified files and to avoid git pull not working
|
`cd "#{ENV['PWD']}" && git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/ && cd "#{@original_dir}"` #using git to add modified files and to avoid git pull not working
|
||||||
|
@ -31,28 +30,28 @@ f = File.open(ENV['PWD']+'/app/views/shared/_side_bar.html.erb','w')
|
||||||
f.write(@file_text)
|
f.write(@file_text)
|
||||||
f.close
|
f.close
|
||||||
puts "finish change patchfile in #{ENV['PWD']}/app/views/shared"
|
puts "finish change patchfile in #{ENV['PWD']}/app/views/shared"
|
||||||
# change_text = '<a title="{{site_title_1}}" class="navbar-brand" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){$(\'.navbar-brand\').eq(0).remove();};if($(\'.navbar-brand\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="navbar-brand" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>'
|
change_text = '<a title="{{site_title_1}}" class="navbar-brand" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){$(\'.navbar-brand\').eq(0).remove();};if($(\'.navbar-brand\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="navbar-brand" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>'
|
||||||
# all_template.each do |folder|
|
all_template.each do |folder|
|
||||||
# if !folder.include?('mobile')
|
if !folder.include?('mobile')
|
||||||
# begin
|
begin
|
||||||
# require 'nokogiri'
|
require 'nokogiri'
|
||||||
# puts "changing header.html.erb in #{folder}/home/header.html.erb"
|
puts "changing header.html.erb in #{folder}/home/header.html.erb"
|
||||||
# if folder.split('/')[-1] != 'mobile'
|
if folder.split('/')[-1] != 'mobile'
|
||||||
# filename = folder+'home/header.html.erb'
|
filename = folder+'home/header.html.erb'
|
||||||
# texts = File.read(filename)
|
texts = File.read(filename)
|
||||||
# texts_html = Nokogiri::HTML.parse(texts)
|
texts_html = Nokogiri::HTML.parse(texts)
|
||||||
# if texts_html.css('.navbar-brand').length == 1
|
if texts_html.css('.navbar-brand').length == 1
|
||||||
# new_texts = texts.gsub(texts_html.css('.navbar-brand').to_s,change_text)
|
new_texts = texts.gsub(texts_html.css('.navbar-brand').to_s,change_text)
|
||||||
# File.open(filename,'w') do |f|
|
File.open(filename,'w') do |f|
|
||||||
# f.write new_texts
|
f.write new_texts
|
||||||
# end
|
end
|
||||||
# end
|
end
|
||||||
# end
|
end
|
||||||
# rescue => e
|
rescue => e
|
||||||
# puts "#{e.inspect}\nnot found #{folder}home/header.html.erb"
|
puts "#{e.inspect}\nnot found #{folder}home/header.html.erb"
|
||||||
# end
|
end
|
||||||
# end
|
end
|
||||||
# end
|
end
|
||||||
# Describe your gem and declare its dependencies:
|
# Describe your gem and declare its dependencies:
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = "patchfile"
|
s.name = "patchfile"
|
||||||
|
|
Loading…
Reference in New Issue