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/vue.rb

20 lines
454 B

module Docs
class Vue < UrlScraper
self.name = 'Vue.js'
self.slug = 'vue'
self.type = 'vue'
self.version = '0.12.5'
self.base_url = 'http://vuejs.org/api/'
html_filters.push 'vue/clean_html', 'vue/entries'
options[:follow_links] = ->(filter) { filter.root_page? }
options[:attribution] = <<-HTML
&copy; 2014&ndash;2015 Evan You, Vue.js contributors<br>
Licensed under the MIT License.
HTML
end
end