This repository has been archived by the owner on Mar 22, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
config.rb
132 lines (104 loc) · 2.59 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
require 'redcarpet'
require 'active_support'
require 'active_support/core_ext'
Dir['./lib/*'].each { |f| require f }
# Debugging
set(:logging, ENV['RACK_ENV'] != 'production')
set :markdown_engine, :redcarpet
set :markdown,
:layout_engine => :erb,
:fenced_code_blocks => true,
:lax_html_blocks => true,
:renderer => Highlighter::HighlightedHTML.new
activate :asset_hash, :ignore => [
/^sw/,
'tomster-sm.png',
'tomster-twitter-card.png'
]
activate :bootstrap_navbar do |bootstrap_navbar|
bootstrap_navbar.bootstrap_version = '3.3.7'
end
activate :directory_indexes
activate :toc
activate :sponsors
activate :highlighter
activate :column_balancer
activate :versions
###
# Build
###
configure :build do
activate :minify_css
activate :minify_javascript
end
###
# Blog
###
activate :blog do |blog|
blog.prefix = 'blog'
blog.layout = 'layouts/blog'
blog.tag_template = 'blog/tag.html'
blog.paginate = true
blog.page_link = "page/{num}"
blog.per_page = 10
end
page '/blog/feed.xml', layout: false
# For fastly cert verification
config.ignored_sitemap_matchers[:source_dotfiles] = proc { |file|
file =~ %r{/\.} && file !~ %r{/\.well-known}
}
###
# Pages
###
page 'community.html'
page 'index.html', proxy: 'about.html'
page '404.html', directory_index: false
# Don't build layouts standalone
ignore '*_layout.erb'
###
# Builds
###
['release', 'beta', 'canary', 'tagged'].each do |tab|
proxy "/builds/#{tab}.html", '/builds/index.html'
end
###
# Helpers
###
helpers do
# Workaround for content_for not working in nested layouts
def partial_for(key, partial_name=nil)
@partial_names ||= {}
if partial_name
@partial_names[key] = partial_name
else
@partial_names[key]
end
end
def rendered_partial_for(key)
partial_name = partial_for(key)
partial(partial_name) if partial_name
end
def link_to_page name, url
path = request.path
current = path =~ Regexp.new('^' + url[1..-1] + '.*\.html')
if path == 'index.html' and name == 'about'
current = true
end
class_name = current ? ' class="active"' : ''
"<li#{class_name}><a href=\"#{url}\">#{name}</a></li>"
end
def inline_svg(path_to_file_inside_images)
image_path = File.join(config[:source], config[:images_dir], path_to_file_inside_images)
File.open(image_path, &:read)
end
def page_classes(page)
classes = super
return 'not-found' if classes == '404'
classes += ' responsive'
end
end
###
# Redirects (These must be last!)
###
activate :alias
redirect "homepage-survey.html", to: "https://tilde.wufoo.com/forms/welcome-to-the-ember-homepage-survey/"