forked from authorNari/g1gc-impl-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
77 lines (63 loc) · 1.94 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# -*- coding: utf-8 -*-
require "yaml"
@config = YAML.load_file("config.yml")
def env(key, error_check=false)
raise "#{key} を指定してください.例: rake task_name #{key}=\"name name\"" if ENV[key].nil? && error_check
ENV[key]
end
def bin(b)
ENV["BIN_DIR"] ||= ""
ENV["BIN_DIR"].empty? ? b : File.join(ENV["BIN_DIR"], "#{b}")
end
desc "原稿の文字数や行数などを集計する。"
task :count do
sh(bin("review-vol"))
end
task :default => [:count]
desc "原稿のHTMLを出力"
task :html => [:index_html] do
sh("#{bin('review-compile')} --target=html --subdirmode -a --check")
sh("#{bin('review-compile')} --target=html --subdirmode -a")
end
desc "index.htmlをREADME.mdから生成"
task :index_html do
require "bluecloth"
require "erb"
body = BlueCloth.new(File.read("README.md")).to_html
title = @config['booktitle']
str = ERB.new(File.read("layouts/index.erb")).result(binding)
File.open("index.html", "w"){|f| f.write(str)}
end
desc "全htmlを生成"
task :package => [:html] do
sh("rm -rf pkg") if File.exists?("pkg")
sh("mkdir pkg")
Rake::Task[:html].invoke
Rake::Task[:index_html].invoke
sh("mv " + Dir.glob("./*.html").join(" ") + " pkg")
sh("cp -rf ./images pkg")
common_files = %w(stylesheet.css)
sh("cp #{common_files.join(" ")} pkg")
end
desc "現在のebookを生成する"
task :ebook do
bn = @config['bookname']
d = @config['date'].strftime('%Y%m%d')
sh("rm -rf #{bn} #{bn}.epub #{bn}.mobi #{bn}.pdf")
sh("#{bin('review-epubmaker')} config.yml")
sh("./misc/kindlegen #{bn}.epub")
sh("mkdir -p ebook")
sh("mv #{bn}.epub ebook/g1gc-impl-#{d}.epub")
sh("mv #{bn}.mobi ebook/g1gc-impl-#{d}.mobi")
sh("rm -rf #{bn}")
sh("#{bin('review-pdfmaker')} config.yml")
sh("mv #{bn}.pdf ebook/g1gc-impl-#{d}.pdf")
sh("rm -rf #{bn}")
end
task :clean do
sh("rm *.html")
sh("rm -r pkg")
end
task :pdf do
sh("rm -rf book; rm -f book.pdf; review-pdfmaker config.yml; open book.pdf")
end