config.rb 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. # --------------------------------------
  2. # Config
  3. # --------------------------------------
  4. # ----- Site ----- #
  5. $last_version = "0.3.0"
  6. $languages = {
  7. "es-ES" => "Español",
  8. "pt-BR" => "Brazilian Portugese",
  9. "sv" => "Svenska",
  10. "zh-CN" => "简体中文",
  11. "zh-TW" => " 繁體中文",
  12. de: "Deutsch",
  13. en: "English",
  14. ru: "Pyccкий",
  15. "tr-TR" => "Türkçe"
  16. }
  17. activate :i18n,
  18. lang_map: $languages,
  19. mount_at_root: :en
  20. set :gauges_id, ''
  21. set :publisher_url, 'https://www.facebook.com/olivier.lacan.5'
  22. set :site_url, 'http://keepachangelog.com'
  23. redirect "index.html", to: "en/#{$last_version}/index.html"
  24. $languages.each do |language|
  25. language_param = language.last.parameterize
  26. redirect "#{language.first}/index.html", to: "#{language.first}/#{$last_version}/index.html"
  27. end
  28. # ----- Assets ----- #
  29. set :css_dir, 'assets/stylesheets'
  30. set :js_dir, 'assets/javascripts'
  31. set :images_dir, 'assets/images'
  32. set :fonts_dir, 'assets/fonts'
  33. # ----- Images ----- #
  34. activate :automatic_image_sizes
  35. # ----- Markdown ----- #
  36. activate :syntax
  37. set :markdown_engine, :redcarpet
  38. set :markdown, {
  39. fenced_code_blocks: true,
  40. footnotes: true,
  41. smartypants: true,
  42. tables: true
  43. }
  44. # --------------------------------------
  45. # Helpers
  46. # --------------------------------------
  47. helpers do
  48. def path_to_url(path)
  49. Addressable::URI.join(config.site_url, path).normalize.to_s
  50. end
  51. end
  52. # --------------------------------------
  53. # Content
  54. # --------------------------------------
  55. # ----- Directories ----- #
  56. activate :directory_indexes
  57. page "/404.html", directory_index: false
  58. # --------------------------------------
  59. # Production
  60. # --------------------------------------
  61. # ----- Optimization ----- #
  62. configure :build do
  63. set :gauges_id, "5389808eeddd5b055a00440d"
  64. activate :asset_hash
  65. activate :gzip, {exts: %w[
  66. .css
  67. .eot
  68. .htm
  69. .html
  70. .ico
  71. .js
  72. .json
  73. .svg
  74. .ttf
  75. .txt
  76. .woff
  77. ]}
  78. set :haml, {ugly: true, attr_wrapper: '"'}
  79. activate :minify_css
  80. activate :minify_html do |html|
  81. html.remove_quotes = false
  82. end
  83. activate :minify_javascript
  84. end
  85. # ----- Prefixing ----- #
  86. activate :autoprefixer do |config|
  87. config.browsers = ['last 2 versions', 'Explorer >= 10']
  88. config.cascade = false
  89. end