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.
24 lines
573 B
24 lines
573 B
6 years ago
|
module Docs
|
||
|
class Reactivex < UrlScraper
|
||
|
self.type = 'reactivex'
|
||
|
self.name = 'ReactiveX'
|
||
|
self.base_url = 'http://reactivex.io/'
|
||
|
self.root_path = 'intro.html'
|
||
|
self.links = {
|
||
|
home: 'http://reactivex.io/'
|
||
|
}
|
||
|
|
||
|
html_filters.push 'reactivex/entries', 'reactivex/clean_html'
|
||
|
|
||
|
options[:download_images] = false
|
||
|
|
||
|
options[:only_patterns] = [/documentation\//]
|
||
|
options[:skip_patterns] = [/ko\//]
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© ReactiveX contributors<br>
|
||
|
Licensed under the Apache License 2.0.
|
||
|
HTML
|
||
|
end
|
||
|
end
|