1
0

fluture.rb 794 B

1234567891011121314151617181920212223242526272829
  1. module Docs
  2. class Fluture < Github
  3. self.name = "Fluture"
  4. self.slug = "fluture"
  5. self.type = "fluture"
  6. self.release = "14.0.0"
  7. self.base_url = "https://github.com/fluture-js/Fluture/blob/#{self.release}/README.md"
  8. self.links = {
  9. home: "https://github.com/fluture-js/Fluture",
  10. code: "https://github.com/fluture-js/Fluture",
  11. }
  12. html_filters.push "fluture/entries", "fluture/clean_html"
  13. options[:skip] = %w[middleware.gif]
  14. options[:container] = '.markdown-body'
  15. options[:title] = "Fluture"
  16. options[:trailing_slash] = false
  17. options[:attribution] = <<-HTML
  18. &copy; 2020 Aldwin Vlasblom<br>
  19. Licensed under the MIT License.
  20. HTML
  21. def get_latest_version(opts)
  22. get_npm_version("fluture", opts)
  23. end
  24. end
  25. end