2019-03-31 11:00:21 +00:00
|
|
|
#!/usr/bin/env rake
|
|
|
|
|
|
|
|
def os
|
|
|
|
@os ||= (
|
|
|
|
host_os = RbConfig::CONFIG['host_os']
|
|
|
|
case host_os
|
|
|
|
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
|
|
|
|
:windows
|
|
|
|
when /darwin|mac os/
|
|
|
|
:macosx
|
|
|
|
when /linux/
|
|
|
|
:linux
|
|
|
|
when /solaris|bsd/
|
|
|
|
:unix
|
|
|
|
else
|
|
|
|
:unknown
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-06-29 11:30:52 +00:00
|
|
|
desc 'Preparation for Generating the HTML Pages'
|
|
|
|
task :prep do
|
2019-04-20 06:23:40 +00:00
|
|
|
cd 'content/' do
|
2019-03-31 11:00:21 +00:00
|
|
|
if os == :linux
|
2019-04-20 06:23:40 +00:00
|
|
|
sh 'grep -l -r ecx.images-amazon.com | sort | uniq | xargs --no-run-if-empty sed -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
|
|
|
|
sh 'grep -l -r "http://www.amazon.co.jp/exec" | sort | uniq | xargs --no-run-if-empty sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
|
2019-06-16 10:22:59 +00:00
|
|
|
sh 'find . -type f -name "*.mde" | xargs --no-run-if-empty rm || true'
|
|
|
|
sh 'find . -type f -name "*.md-e" | xargs --no-run-if-empty rm || true'
|
2019-03-31 11:00:21 +00:00
|
|
|
else
|
2019-06-16 10:22:59 +00:00
|
|
|
sh 'grep -l -r ecx.images-amazon.com . | sort | uniq | xargs d -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
|
|
|
|
sh 'grep -l -r "http://www.amazon.co.jp/exec" . | sort | uniq | xargs sed -i -e "s/http:\/\/www.amazon.co.jp\/exec/https:\/\/www.amazon.co.jp\/exec/g"'
|
|
|
|
sh 'find . -type f -name "*.mde" | xargs rm || true'
|
|
|
|
sh 'find . -type f -name "*.md-e" | xargs rm || true'
|
2019-03-31 11:00:21 +00:00
|
|
|
end
|
|
|
|
end
|
2019-04-13 11:01:46 +00:00
|
|
|
|
|
|
|
cd 'public' do
|
|
|
|
sh 'rm -rf *'
|
|
|
|
end
|
2019-03-31 11:00:21 +00:00
|
|
|
end
|