1
0

nginx_lua_module.rb 660 B

12345678910111213141516171819
  1. module Docs
  2. class NginxLuaModule < Github
  3. self.name = 'nginx / Lua Module'
  4. self.slug = 'nginx_lua_module'
  5. self.release = '0.10.11'
  6. self.base_url = "https://github.com/openresty/lua-nginx-module/tree/v#{self.release}/"
  7. html_filters.push 'nginx_lua_module/clean_html', 'nginx_lua_module/entries', 'title'
  8. options[:root_title] = 'ngx_http_lua_module'
  9. options[:container] = '#readme > article'
  10. options[:attribution] = <<-HTML
  11. &copy; 2009&ndash;2017 Xiaozhe Wang (chaoslawful)<br>
  12. &copy; 2009&ndash;2018 Yichun "agentzh" Zhang (章亦春), OpenResty Inc.<br>
  13. Licensed under the BSD License.
  14. HTML
  15. end
  16. end