Skip to content

Commit e53b009

Browse files
committed
chore: s/cryptoguesser/cryptoguess/
1 parent ecd3df6 commit e53b009

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ version: 2.1
22

33
executors:
44
golang:
5-
working_directory: /go/src/moul.io/cryptoguesser
5+
working_directory: /go/src/moul.io/cryptoguess
66
docker:
77
- image: circleci/golang:1.12
88
environment:
99
GO111MODULE: "on"
10-
DOCKER_IMAGE: moul/cryptoguesser
10+
DOCKER_IMAGE: moul/cryptoguess
1111

1212
docker:
1313
docker:
@@ -43,7 +43,7 @@ jobs:
4343
- setup_remote_docker:
4444
docker_layer_caching: true
4545
- docker/build:
46-
image: moul/cryptoguesser
46+
image: moul/cryptoguess
4747
#- docker/dockerlint
4848

4949
workflows:

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ changelog:
3030
- '^docs:'
3131
- '^test:'
3232
brew:
33-
name: cryptoguesser
33+
name: cryptoguess
3434
github:
3535
owner: moul
3636
name: homebrew-moul
3737
commit_author:
3838
name: moul-bot
3939
email: "m+bot@42.am"
4040
homepage: https://manfred.life/
41-
description: "cryptoguesser"
41+
description: "cryptoguess"

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
FROM golang:1.12-alpine as builder
33
RUN apk add --no-cache git gcc musl-dev make
44
ENV GO111MODULE=on
5-
WORKDIR /go/src/moul.io/cryptoguesser
5+
WORKDIR /go/src/moul.io/cryptoguess
66
COPY go.* ./
77
RUN go mod download
88
COPY . ./
99
RUN make install
1010

1111
# minimalist runtime
1212
FROM alpine:3.10
13-
COPY --from=builder /go/bin/cryptoguesser /bin/
14-
ENTRYPOINT ["/bin/cryptoguesser"]
13+
COPY --from=builder /go/bin/cryptoguess /bin/
14+
ENTRYPOINT ["/bin/cryptoguess"]
1515
CMD []

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
# cryptoguesser
2-
3-
:smile: cryptoguesser does
4-
5-
[![CircleCI](https://circleci.com/gh/moul/cryptoguesser.svg?style=shield)](https://circleci.com/gh/moul/cryptoguesser)
6-
[![GoDoc](https://godoc.org/moul.io/cryptoguesser?status.svg)](https://godoc.org/moul.io/cryptoguesser)
7-
[![License](https://img.shields.io/github/license/moul/cryptoguesser.svg)](https://github.com/moul/cryptoguesser/blob/master/LICENSE)
8-
[![GitHub release](https://img.shields.io/github/release/moul/cryptoguesser.svg)](https://github.com/moul/cryptoguesser/releases)
9-
[![Go Report Card](https://goreportcard.com/badge/moul.io/cryptoguesser)](https://goreportcard.com/report/moul.io/cryptoguesser)
10-
[![CodeFactor](https://www.codefactor.io/repository/github/moul/cryptoguesser/badge)](https://www.codefactor.io/repository/github/moul/cryptoguesser)
11-
[![codecov](https://codecov.io/gh/moul/cryptoguesser/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/cryptoguesser)
12-
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/cryptoguesser.svg)](https://microbadger.com/images/moul/cryptoguesser)
1+
# cryptoguess
2+
3+
:smile: cryptoguess does
4+
5+
[![CircleCI](https://circleci.com/gh/moul/cryptoguess.svg?style=shield)](https://circleci.com/gh/moul/cryptoguess)
6+
[![GoDoc](https://godoc.org/moul.io/cryptoguess?status.svg)](https://godoc.org/moul.io/cryptoguess)
7+
[![License](https://img.shields.io/github/license/moul/cryptoguess.svg)](https://github.com/moul/cryptoguess/blob/master/LICENSE)
8+
[![GitHub release](https://img.shields.io/github/release/moul/cryptoguess.svg)](https://github.com/moul/cryptoguess/releases)
9+
[![Go Report Card](https://goreportcard.com/badge/moul.io/cryptoguess)](https://goreportcard.com/report/moul.io/cryptoguess)
10+
[![CodeFactor](https://www.codefactor.io/repository/github/moul/cryptoguess/badge)](https://www.codefactor.io/repository/github/moul/cryptoguess)
11+
[![codecov](https://codecov.io/gh/moul/cryptoguess/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/cryptoguess)
12+
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/cryptoguess.svg)](https://microbadger.com/images/moul/cryptoguess)
1313
[![Made by Manfred Touron](https://img.shields.io/badge/made%20by-Manfred%20Touron-blue.svg?style=flat)](https://manfred.life/)
1414

1515

1616
## Usage
1717

1818
```console
19-
$ cryptoguesser -h
19+
$ cryptoguess -h
2020
...
2121
```
2222

2323
## Install
2424

2525
```console
26-
$ go get -u moul.io/cryptoguesser
26+
$ go get -u moul.io/cryptoguess
2727
```
2828

2929
## License
3030

3131
© 2019 [Manfred Touron](https://manfred.life) -
32-
[Apache-2.0 License](https://github.com/moul/cryptoguesser/blob/master/LICENSE)
32+
[Apache-2.0 License](https://github.com/moul/cryptoguess/blob/master/LICENSE)

cryptoguess/cryptoguess.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cryptoguess // import "moul.io/cryptoguesser/cryptoguess"
1+
package cryptoguess // import "moul.io/cryptoguess/cryptoguess"
22
import (
33
"fmt"
44
"reflect"

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
// limitations under the License.
1414

1515
// Package main is ...
16-
package main // import "moul.io/cryptoguesser"
16+
package main // import "moul.io/cryptoguess"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module moul.io/cryptoguesser
1+
module moul.io/cryptoguess
22

33
go 1.12

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package main // import "moul.io/cryptoguesser"
1+
package main // import "moul.io/cryptoguess"
22

33
import (
44
"bufio"
55
"fmt"
66
"io"
77
"os"
88

9-
"moul.io/cryptoguesser/cryptoguess"
9+
"moul.io/cryptoguess/cryptoguess"
1010
)
1111

1212
func main() {

0 commit comments

Comments
 (0)