-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathbottle.rb
42 lines (34 loc) · 1.1 KB
/
bottle.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module Docs
class Bottle < UrlScraper
self.type = 'sphinx'
self.root_path = 'index.html'
self.links = {
home: 'https://bottlepy.org/',
code: 'https://github.com/bottlepy/bottle'
}
html_filters.push 'bottle/entries', 'sphinx/clean_html'
options[:container] = '.body'
options[:skip] = %w(changelog.html development.html _modules/bottle.html)
options[:attribution] = <<-HTML
© 2009–2017 Marcel Hellkamp<br>
Licensed under the MIT License.
HTML
version '0.13' do
self.release = '0.12.13'
self.base_url = "https://bottlepy.org/docs/#{self.version}/"
end
version '0.12' do
self.release = '0.12.13'
self.base_url = "https://bottlepy.org/docs/#{self.version}/"
end
version '0.11' do
self.release = '0.11.7'
self.base_url = "https://bottlepy.org/docs/#{self.version}/"
end
def get_latest_version(opts)
doc = fetch_doc('https://bottlepy.org/docs/stable/', opts)
label = doc.at_css('.sphinxsidebarwrapper > ul > li > b')
label.content.sub(/Bottle /, '')
end
end
end