1
1
module Docs
2
2
class Kotlin < UrlScraper
3
3
self . type = 'kotlin'
4
- self . release = '1.2 .41'
4
+ self . release = '1.3 .41'
5
5
self . base_url = 'https://kotlinlang.org/'
6
6
self . root_path = 'api/latest/jvm/stdlib/index.html'
7
7
self . links = {
@@ -22,10 +22,18 @@ class Kotlin < UrlScraper
22
22
docs/events.html
23
23
docs/resources.html
24
24
docs/reference/grammar.html )
25
- options [ :replace_paths ] = { 'api/latest/jvm/stdlib/' => 'api/latest/jvm/stdlib/index.html' }
25
+ options [ :replace_paths ] = {
26
+ 'api/latest/jvm/stdlib/' => 'api/latest/jvm/stdlib/index.html' ,
27
+ 'docs/reference/coroutines.html' => 'docs/reference/coroutines-overview.html' ,
28
+ 'api/latest/jvm/stdlib/kotlin/fold.html' => 'api/latest/jvm/stdlib/kotlin.collections/fold.html' ,
29
+ 'api/latest/jvm/stdlib/kotlin/get-or-else.html' => 'api/latest/jvm/stdlib/kotlin.collections/get-or-else.html' ,
30
+ 'api/latest/jvm/stdlib/kotlin/map.html' => 'api/latest/jvm/stdlib/kotlin.collections/map.html' ,
31
+ 'docs/tutorials/native/targeting-multiple-platforms.html' => 'docs/tutorials/native/basic-kotlin-native-app.html' ,
32
+ 'api/latest/jvm/stdlib/kotlin/-throwable/print-stack-trace.html' => 'api/latest/jvm/stdlib/kotlin/print-stack-trace.html' ,
33
+ }
26
34
27
35
options [ :attribution ] = <<-HTML
28
- © 2010–2018 JetBrains s.r.o.< br >
36
+ © 2010–2019 JetBrains s.r.o.< br >
29
37
Licensed under the Apache License, Version 2.0.
30
38
HTML
31
39
0 commit comments