2
2
3
3
<p >
4
4
<img alt =" Version " src =" https://img.shields.io/badge/version-1.9.3-blue.svg?cacheSeconds=2592000 " />
5
- <a href =" https://github.com/doyaaaaaken /kotlin-csv/blob/master/LICENSE " >
5
+ <a href =" https://github.com/jsoizo /kotlin-csv/blob/master/LICENSE " >
6
6
<img alt="License: Apache License 2.0" src="https://img.shields.io/badge/License-Apache License 2.0-yellow.svg" target="_blank" />
7
7
</a >
8
- <img alt =" CircleCI " src =" https://circleci.com/gh/doyaaaaaken/kotlin-csv/tree/master.svg?style=svg " />
9
- <a href =" https://codecov.io/gh/doyaaaaaken/kotlin-csv " >
10
- <img src="https://codecov.io/gh/doyaaaaaken/kotlin-csv/branch/master/graph/badge.svg" alt="codecov" />
8
+ <a href =" https://codecov.io/gh/jsoizo/kotlin-csv " >
9
+ <img src="https://codecov.io/gh/jsoizo/kotlin-csv/branch/master/graph/badge.svg" alt="codecov" />
11
10
</a >
12
- <a href =" https://www.codefactor.io/repository/github/doyaaaaaken /kotlin-csv " >
13
- <img src="https://www.codefactor.io/repository/github/doyaaaaaken /kotlin-csv/badge" alt="CodeFactor" />
11
+ <a href =" https://www.codefactor.io/repository/github/jsoizo /kotlin-csv " >
12
+ <img src="https://www.codefactor.io/repository/github/jsoizo /kotlin-csv/badge" alt="CodeFactor" />
14
13
</a >
15
14
</p >
16
15
@@ -38,12 +37,16 @@ Pure Kotlin CSV Reader/Writer.
38
37
39
38
### Gradle
40
39
41
- ``` gradle
42
- // Gradle Kotlin DSL
40
+ for Kotlin DSL
41
+
42
+ ``` kotlin
43
43
implementation(" com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3" ) // for JVM platform
44
44
implementation(" com.github.doyaaaaaken:kotlin-csv-js:1.9.3" ) // for Kotlin JS platform
45
+ ```
46
+
47
+ for Gradle DSL
45
48
46
- // Gradle Groovy DSL
49
+ ``` groovy
47
50
implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3' // for JVM platform
48
51
implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.3' // for Kotlin JS platform
49
52
```
@@ -115,7 +118,7 @@ csvReader().open("test1.csv") {
115
118
csvReader().open(" test2.csv" ) {
116
119
readAllWithHeaderAsSequence().forEach { row: Map <String , String > ->
117
120
// Do something
118
- println (row) // {id=1, name=doyaaaaaken }
121
+ println (row) // {id=1, name=jsoizo }
119
122
}
120
123
}
121
124
```
@@ -276,7 +279,7 @@ val writer = csvWriter {
276
279
277
280
** Documents**
278
281
279
- * [ Change Logs] ( https://github.com/doyaaaaaken /kotlin-csv/releases )
282
+ * [ Change Logs] ( https://github.com/jsoizo /kotlin-csv/releases )
280
283
281
284
** Libraries which use kotlin-csv**
282
285
@@ -286,13 +289,13 @@ val writer = csvWriter {
286
289
287
290
## 🤝 Contributing
288
291
289
- Contributions, [ issues] ( https://github.com/doyaaaaaken /kotlin-csv/issues ) and feature requests are welcome!
292
+ Contributions, [ issues] ( https://github.com/jsoizo /kotlin-csv/issues ) and feature requests are welcome!
290
293
If you have questions, ask away in [ Kotlin Slack's] ( https://kotlinlang.slack.com ) ` kotlin-csv ` room.
291
294
292
295
## 💻 Development
293
296
294
297
``` sh
295
- git clone
[email protected] :
doyaaaaaken /kotlin-csv.git
298
+ git clone
[email protected] :
jsoizo /kotlin-csv.git
296
299
cd kotlin-csv
297
300
./gradlew check
298
301
```
0 commit comments