You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/lib/docs/scrapers/vagrant.rb

20 lines
500 B

module Docs
class Vagrant < UrlScraper
self.name = 'Vagrant'
self.type = 'vagrant'
self.version = '1.7.4'
self.base_url = 'https://docs.vagrantup.com/v2/'
self.links = {
home: 'https://www.vagrantup.com/',
code: 'https://github.com/mitchellh/vagrant'
}
html_filters.push 'vagrant/entries', 'vagrant/clean_html'
options[:attribution] = <<-HTML
&copy; 2010&ndash;2015 Mitchell Hashimoto<br>
Licensed under the MIT License.
HTML
end
end