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.
35 lines
856 B
35 lines
856 B
module Docs
|
|
class Vue < UrlScraper
|
|
self.name = 'Vue.js'
|
|
self.slug = 'vue'
|
|
self.type = 'vue'
|
|
self.links = {
|
|
home: 'https://vuejs.org/',
|
|
code: 'https://github.com/vuejs/vue'
|
|
}
|
|
|
|
html_filters.push 'vue/clean_html', 'vue/entries'
|
|
|
|
options[:only_patterns] = [/guide\//, /api\//]
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2013–2016 Evan You, Vue.js contributors<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
|
|
version '2' do
|
|
self.release = '2.0.5'
|
|
self.base_url = 'https://vuejs.org/v2/'
|
|
self.root_path = 'guide/index.html'
|
|
self.initial_paths = %w(api/index.html)
|
|
end
|
|
|
|
version '1' do
|
|
self.release = '1.0.28'
|
|
self.base_url = 'https://v1.vuejs.org'
|
|
self.root_path = '/guide/index.html'
|
|
self.initial_paths = %w(/api/index.html)
|
|
end
|
|
end
|
|
end
|