-
Notifications
You must be signed in to change notification settings - Fork 6
/
Rakefile
114 lines (87 loc) · 3.29 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
def icon_data
require 'json'
JSON.parse(File.read('support/icons.json'))
end
def edit(file, &blk)
contents = File.read(file)
contents = yield(contents)
puts "==> Updating #{file}"
File.open(file, 'w') { |f| f.write contents }
end
def write(file, &blk)
contents = yield
puts "==> Writing #{file}"
File.open(file, 'w') { |f| f.write contents }
end
# ----------------------------------------------------------------------------
desc "Scrapes data from sass files and writes them to the json manifest."
task 'support/icons.json' do
write 'support/icons.json' do
require 'json'
files = Dir['./_*.sass']
output = {}
files.each do |file|
contents = File.read(file)
name = (file =~ /_(.*?)\.sass$/) && $1.strip
pack = output[name] = {
'prefix' => (contents =~ /= ([^\-]*)-font/ && $1),
'name' => name,
'url' => (contents =~ /Website: (.*?)$/ && $1.strip),
'nativeSize' => (contents =~ /-native-size: ([\d]+)px/ && $1.to_i),
'remotePath' => (contents =~ /^\/\/ +(.*?)\.ttf$/ && $1),
'icons' => {}
}
list = pack['icons']
contents.gsub(/^%[^\-]*-(.*?):before\n +content: "(.*?)"/) { list[$1] = $2 }
end
JSON.pretty_generate(output) + "\n"
end
end
# ----------------------------------------------------------------------------
task 'support/style.scss' => ['support/icons.json'] do
write 'support/style.scss' do |contents|
lines = []
icon_data.each do |name, pack|
size = pack['nativeSize']
prefix = pack['prefix']
lines << "$#{prefix}-path: '#{pack['remotePath']}';"
lines << "@import '../#{name}';"
lines << "@include #{prefix}-font;"
lines << "##{name} .icon:before { font-size: #{size}px; }"
pack['icons'].each do |icon, _|
lines << ".#{prefix}-#{icon} { @include #{prefix}-icon(#{icon}); }"
end
end
lines.join("\n")
end
end
# ----------------------------------------------------------------------------
task 'support/style.css' => ['support/style.scss'] do
puts "==> Compiling style.css"
system 'sass -t compact support/style.scss > support/style.css'
File.unlink 'support/style.scss'
end
# ----------------------------------------------------------------------------
task 'index.html' => ['support/style.css'] do
edit 'index.html' do |contents|
icons = []
icon_data.each do |name, pack|
url = "https://github.com/rstacruz/sass_icon_fonts/blob/master/_#{name}.sass"
icons << "<div class='pack' id='#{name}'>"
icons << "<h3><a class='title' href='#{url}'>#{name}</a></h3>"
pack['icons'].each do |icon, _|
prefix = pack['prefix']
icons << "<i class='icon #{prefix}-#{icon}'><span>#{icon}</span></i>"
end
icons << "</div>"
end
css_data = "<style type='text/css'>\n%s</style>" % [ File.read('support/style.css') ]
css_data.gsub! /\n{2,}/, "\n"
File.unlink 'support/style.css'
contents.gsub!(%r[<!-- START -->(.*)<!-- END -->]m, "<!-- START -->\n#{icons.join("\n")}\n<!-- END -->")
contents.gsub!(%r[<!-- START CSS -->(.*)<!-- END CSS -->]m) { "<!-- START CSS -->\n#{css_data}\n<!-- END CSS -->" }
end
end
# ----------------------------------------------------------------------------
task :all => %w[support/icons.json index.html]
task :default => :all