forked from emberjs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.rb
103 lines (78 loc) · 1.9 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
require 'redcarpet'
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 :directory_indexes
activate :toc
activate :highlighter
activate :api_docs,
default_class: 'Ember',
repo_url: 'https://github.com/emberjs/ember.js'
###
# Build
###
configure :build do
activate :minify_css
activate :minify_javascript, ignore: /.*examples.*js/
end
###
# Blog
###
activate :blog do |blog|
blog.prefix = 'blog'
blog.layout = 'layouts/blog'
blog.tag_template = 'blog/tag.html'
end
page '/blog/feed.xml', layout: false
###
# Pages
###
page 'guides*', layout: :guide do
@guides = data.guides
end
page 'community.html'
page 'index.html', proxy: 'about.html'
page '404.html', directory_index: false
# Don't build layouts standalone
ignore '*_layout.erb'
# Don't build API layouts
ignore 'api/class.html.erb'
ignore 'api/module.html.erb'
###
# 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 page_classes
classes = super
return 'not-found' if classes == '404'
classes
end
end