-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathdart.rb
45 lines (37 loc) · 1.14 KB
/
dart.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
43
44
45
module Docs
class Dart < FileScraper
self.type = 'dart'
self.root_path = 'index.html'
self.links = {
home: 'https://dart.dev/',
code: 'https://github.com/dart-lang/sdk'
}
html_filters.push 'dart/entries', 'dart/clean_html'
options[:fix_urls] = ->(url) do
# localhost/dart-web_audio/..dart-io/dart-io-library.html > localhost/dart-io/dart-io-library.html
url.remove!(/[^\/]+\/\.\./)
url
end
options[:attribution] = <<-HTML
© 2012 the Dart project authors<br>
Licensed under the BSD 3-Clause "New" or "Revised" License.
HTML
version '3' do
self.release = '3.5.3'
self.base_url = "https://api.dart.dev/stable/#{release}/"
end
version '2' do
self.release = '2.18.5'
self.base_url = "https://api.dart.dev/stable/#{release}/"
end
version '1' do
self.release = '1.24.3'
self.base_url = "https://api.dart.dev/stable/#{release}/"
end
def get_latest_version(opts)
doc = fetch_doc('https://api.dart.dev/', opts)
label = doc.at_css('footer > span').content.strip
label.sub(/Dart\s*/, '')
end
end
end