This repository has been archived by the owner on Sep 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathconfig.rb
87 lines (69 loc) · 2.5 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
###
# Page options, layouts, aliases and proxies
###
activate :syntax, :inline_theme => Rouge::Themes::Base16::Monokai.new
set :markdown_engine, :kramdown
config.ignored_sitemap_matchers[:source_dotfiles] = proc { |file|
file =~ %r{/\.} && file !~ %r{/\.(well-known|htaccess|htpasswd|nojekyll)}
}
# the only true server time
#Time.zone = "UTC"
# Per-page layout changes:
#
# With no layout
page '/*.xml', layout: false
page '/*.json', layout: false
page '/*.txt', layout: false
# With alternative layout
# page "/path/to/file.html", layout: :otherlayout
page 'docs/getting-started/*', layout: :sidebar
page 'docs/*', layout: :docs
# 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" }
# General configuration
###
# Helpers
###
# Methods defined in the helpers block are available in templates
helpers do
def link_classes(current_url, item_link)
'is-active' if same_link?(current_url, item_link)
end
def same_link?(one, two)
strip_trailing_slash(one) == strip_trailing_slash(two)
end
def strip_trailing_slash(str)
str.end_with?('/') ? str[0..-2] : str
end
end
activate :sprockets
activate :directory_indexes
# Build-specific configuration
configure :build do
# Minify CSS on build
# activate :minify_css
# Minify Javascript on build
# activate :minify_javascript
end
###
# s3_sync configuration
###
AWS_BUCKET = 'kitchen.ci'
AWS_ACCESS_KEY = ENV['AWS_ACCESS_KEY']
AWS_SECRET = ENV['AWS_SECRET']
activate :s3_sync do |s3_sync|
s3_sync.bucket = AWS_BUCKET # The name of the S3 bucket you are targeting. This is globally unique.
# s3_sync.region = 'us-east-1' # The AWS region for your bucket. (S3 no longer requires this, dummy input?)
s3_sync.aws_access_key_id = AWS_ACCESS_KEY
s3_sync.aws_secret_access_key = AWS_SECRET
s3_sync.delete = false # We delete stray files by default.
# s3_sync.after_build = false # We do not chain after the build step by default.
# s3_sync.prefer_gzip = true
# s3_sync.path_style = true
# s3_sync.reduced_redundancy_storage = false
# s3_sync.acl = 'public-read'
# s3_sync.encryption = false
# s3_sync.prefix = ''
# s3_sync.version_bucket = false
end