influxdb.rb 395 B

123456789101112131415
  1. module Docs
  2. class Influxdb < UrlScraper
  3. self.name = 'InfluxDB'
  4. self.type = 'influxdb'
  5. self.release = '0.10'
  6. self.base_url = 'https://docs.influxdata.com/influxdb/v0.10/'
  7. html_filters.push 'influxdb/entries', 'influxdb/clean_html'
  8. options[:attribution] = <<-HTML
  9. &copy; 2010&ndash;2015 InfluxData<br>
  10. Licensed under the MIT license.
  11. HTML
  12. end
  13. end