File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,23 @@ class Julia < UrlScraper
7
7
8
8
9
9
options [ :attribution ] = <<-HTML
10
- © 2009–2023 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors< br >
10
+ © 2009–2024 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors< br >
11
11
Licensed under the MIT License.
12
12
HTML
13
13
14
+ version '1.11' do
15
+ self . release = '1.11.2'
16
+ self . base_url = "https://docs.julialang.org/en/v#{ version } /"
17
+ self . type = 'julia'
18
+
19
+ html_filters . push 'julia/entries' , 'julia/clean_html'
20
+
21
+ options [ :container ] = '.docs-main'
22
+ options [ :only_patterns ] = [ /\A manual\/ / , /\A base\/ / , /\A stdlib\/ / ]
23
+ end
24
+
14
25
version '1.10' do
15
- self . release = '1.10.0.2 '
26
+ self . release = '1.10.7 '
16
27
self . base_url = "https://docs.julialang.org/en/v#{ version } /"
17
28
self . type = 'julia'
18
29
You can’t perform that action at this time.
0 commit comments