Skip to content

Commit

Permalink
Rename to luna
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecorry31 committed Jul 22, 2023
1 parent b36fb51 commit 1089bae
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Tasks
An Kotlin library for running tasks.
# Luna
A library of useful Kotlin utilities.

## Installation (Gradle)
```gradle
Expand All @@ -8,6 +8,6 @@ repositories {
}
dependencies {
implementation 'com.github.kylecorry31:tasks:<version>'
implementation 'com.github.kylecorry31:luna:<version>'
}
```
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ afterEvaluate {
publications {
create<MavenPublication>("release") {
groupId = group.toString()
artifactId = "tasks"
artifactId = "luna"
version = version
from(components["java"])
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

rootProject.name = "tasks"
rootProject.name = "luna"

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.kylecorry.tasks
package com.kylecorry.luna.tasks

import kotlinx.coroutines.*
import kotlinx.coroutines.channels.Channel
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.kylecorry.tasks
package com.kylecorry.luna.tasks

import kotlinx.coroutines.delay
import kotlinx.coroutines.runBlocking
Expand Down

0 comments on commit 1089bae

Please sign in to comment.