Skip to content

Commit

Permalink
Rename to dicebot
Browse files Browse the repository at this point in the history
  • Loading branch information
arkie committed Mar 3, 2018
1 parent 57f14e7 commit e4e3e96
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
DiceBot [![Build Status](https://circleci.com/gh/arkie/hackyslack2.svg?style=shield)](https://circleci.com/gh/arkie/hackyslack2)
DiceBot [![Build Status](https://circleci.com/gh/arkie/dicebot.svg?style=shield)](https://circleci.com/gh/arkie/dicebot)
-------

[DiceBot](https://slack.com/apps/A0K7BALJ1-dicebot) is a [Slack](https://slack.com/) app that runs on [App Engine](https://cloud.google.com/appengine/)
Expand Down
2 changes: 1 addition & 1 deletion index.go
@@ -1,7 +1,7 @@
package dicebot

import (
"github.com/arkie/hackyslack2/slack"
"github.com/arkie/dicebot/slack"
"html/template"
"net/http"
"os"
Expand Down
4 changes: 2 additions & 2 deletions roll.go
Expand Up @@ -2,8 +2,8 @@ package dicebot

import (
"fmt"
"github.com/arkie/hackyslack2/roll"
"github.com/arkie/hackyslack2/slack"
"github.com/arkie/dicebot/roll"
"github.com/arkie/dicebot/slack"
"math/rand"
"os"
"strconv"
Expand Down
4 changes: 2 additions & 2 deletions roll_test.go
Expand Up @@ -2,8 +2,8 @@ package dicebot

import (
"fmt"
"github.com/arkie/hackyslack2/roll"
"github.com/arkie/hackyslack2/slack"
"github.com/arkie/dicebot/roll"
"github.com/arkie/dicebot/slack"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion slack/README.md
Expand Up @@ -10,7 +10,7 @@ To use in your own apps:
- View the parent [dicebot](/) app which in turn uses the [dicebot/roll](/roll) dice parsing library.
- Import the repository.

```import "github.com/arkie/hackyslack2/slack"```
```import "github.com/arkie/dicebot/slack"```

- Configure with the application id and secret from [Slack](https://api.slack.com/applications) (see: [/index.go](/index.go#L17))

Expand Down
2 changes: 1 addition & 1 deletion template/contact.html
Expand Up @@ -8,7 +8,7 @@
<hr>
<p class="small">
For any questions, comments, or issues, feel free to submit a new issue on
<a href="https://github.com/arkie/hackyslack2/issues">Github</a>. If you
<a href="https://github.com/arkie/dicebot/issues">Github</a>. If you
don't have a Github account, support can be reached at
<a href="mailto:dicebot.email@gmail.com">dicebot.email@gmail.com</a>.
</p>
Expand Down
4 changes: 2 additions & 2 deletions template/index.html
Expand Up @@ -26,9 +26,9 @@
<p>
The full set of rolling options,
along with some example commands for different gaming systems,
is explained in <a href="https://github.com/arkie/hackyslack2">the DiceBot README</a>.
is explained in <a href="https://github.com/arkie/dicebot">the DiceBot README</a>.
</p>
<a href="https://github.com/arkie/hackyslack2" class="small">Github</a>
<a href="https://github.com/arkie/dicebot" class="small">Github</a>
<a href="/privacy" class="small">Privacy Policy</a>
<a href="/contact" class="small">Contact</a>
</body>
Expand Down

0 comments on commit e4e3e96

Please sign in to comment.