mirror of https://github.com/freeCodeCamp/devdocs
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.
20 lines
472 B
20 lines
472 B
module Docs
|
|
class Vagrant < UrlScraper
|
|
self.name = 'Vagrant'
|
|
self.slug = 'vagrant'
|
|
self.type = 'vagrant'
|
|
self.version = '1.7.4'
|
|
self.base_url = 'http://docs.vagrantup.com/v2/'
|
|
self.links = {
|
|
home: 'http://www.vagrantup.com/'
|
|
}
|
|
|
|
html_filters.push 'vagrant/clean_html', 'vagrant/entries'
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2010–2015 Mitchell Hashimoto<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|