-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.rb
161 lines (134 loc) · 3.78 KB
/
config.rb
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
###
# Compass
###
# Change Compass configuration
# compass_config do |config|
# config.output_style = :compact
# end
###
# Page options, layouts, aliases and proxies
###
# Per-page layout changes:
#
# With no layout
page "index.html", layout: false
#
# With alternative layout
# page "/path/to/file.html", :layout => :otherlayout
#
# A path which all have the same layout
# with_layout :admin do
# page "/admin/*"
# end
# Proxy pages (http://middlemanapp.com/basics/dynamic-pages/)
# proxy "/this-page-has-no-template.html", "/template-file.html", :locals => {
# :which_fake_page => "Rendering a fake page with a local variable" }
###
# Helpers
###
# Automatic image dimensions on image_tag helper
# activate :automatic_image_sizes
# Reload the browser automatically whenever files change
activate :livereload
activate :autoprefixer, inline: true
set :images_dir, "2015/images"
# Methods defined in the helpers block are available in templates
helpers do
def commit
`git log -1 --pretty=%h`.strip
end
def builds
begin
history = JSON.parse(open("https://eurucamp.github.io/livingstyleguide-eurucamp/builds.json").read)
rescue OpenURI::HTTPError
history = []
end
history << {
"commit" => commit,
"message" => `git log -1 --pretty=%B`.split("\n").first.strip,
"author" => `git log -1 --pretty=%an`.strip,
"time" => `git log -1 --pretty=%ad`.strip
}
history
end
def years
Dir.glob("source/*").map do |file|
File.basename(file)
end.reject do |file|
not file =~ /^20\d\d$/
end
end
end
StyleGuideAPI.initialize
years.sort.reverse.each do |year|
StyleGuideAPI.add_templates "source/#{year}/components/*.haml", theme: year
if build?
StyleGuideAPI.add_stylesheet "https://eurucamp.github.io/livingstyleguide-eurucamp/#{commit}/#{year}/eurucamp.css"
else
StyleGuideAPI.add_stylesheet "http://localhost:4567/#{year}/eurucamp.css"
end
end
activate :styleguide_api
activate :relative_assets
# Build-specific configuration
configure :build do
# For example, change the Compass output style for deployment
# activate :minify_css
# Minify Javascript on build
# activate :minify_javascript
# Enable cache buster
# activate :asset_hash
# Or use a different image path
# set :http_prefix, "/Content/images/"
end
after_build do |builder|
commit = `git log -1 --pretty=%h`.strip
FileUtils.rm_r "#{build_dir}/#{commit}", force: true
files = Dir.glob("#{build_dir}/*")
FileUtils.mkdir "#{build_dir}/#{commit}"
files.each do |file|
file = File.basename(file)
FileUtils.cp_r("#{build_dir}/#{file}", "#{build_dir}/#{commit}/#{file}")
end
end
module InlineSVG
def inline_svg(path, mime_type = nil)
path = path.value
root = File.dirname(environment.options[:original_filename])
real_path = root + "/images/" + path
svg = File.read(real_path)
colors = File.readlines(root + "/base/_colors.sass").compact
colors.each do |line|
if m = line.match(%r(^(?<variable>.+):\s*(?<color>.+)$))
svg.gsub! m[:variable], m[:color]
end
end
inline_image_string(svg, 'image/svg+xml')
end
protected
def inline_image_string(data, mime_type)
data = [data].flatten.pack('m').gsub("\n","")
url = "url('data:#{mime_type};base64,#{data}')"
unquoted_string(url)
end
private
def data(real_path)
if File.readable?(real_path)
File.open(real_path, "rb") {|io| io.read}
else
raise ::Compass::Error, "File not found or cannot be read: #{real_path}"
end
end
end
module ::Sass::Script::Functions
include InlineSVG
end
activate :s3_sync do |s3_sync|
s3_sync.bucket = 'style-guide.eurucamp.org'
s3_sync.region = 'eu-central-1'
end
helpers do
def md2html(text)
Redcarpet::Markdown.new(Redcarpet::Render::HTML).render(text)
end
end