vagrant.rb 472 B

12345678910111213141516171819
  1. module Docs
  2. class Vagrant < UrlScraper
  3. self.name = 'Vagrant'
  4. self.slug = 'vagrant'
  5. self.type = 'vagrant'
  6. self.version = '1.7.4'
  7. self.base_url = 'http://docs.vagrantup.com/v2/'
  8. self.links = {
  9. home: 'http://www.vagrantup.com/'
  10. }
  11. html_filters.push 'vagrant/clean_html', 'vagrant/entries'
  12. options[:attribution] = <<-HTML
  13. &copy; 2010&ndash;2015 Mitchell Hashimoto<br>
  14. Licensed under the MIT License.
  15. HTML
  16. end
  17. end