Skip to content

Commit

Permalink
chore: s/cryptoguesser/cryptoguess/
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Aug 5, 2019
1 parent ecd3df6 commit e53b009
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ version: 2.1

executors:
golang:
working_directory: /go/src/moul.io/cryptoguesser
working_directory: /go/src/moul.io/cryptoguess
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: "on"
DOCKER_IMAGE: moul/cryptoguesser
DOCKER_IMAGE: moul/cryptoguess

docker:
docker:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- setup_remote_docker:
docker_layer_caching: true
- docker/build:
image: moul/cryptoguesser
image: moul/cryptoguess
#- docker/dockerlint

workflows:
Expand Down
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ changelog:
- '^docs:'
- '^test:'
brew:
name: cryptoguesser
name: cryptoguess
github:
owner: moul
name: homebrew-moul
commit_author:
name: moul-bot
email: "[email protected]"
homepage: https://manfred.life/
description: "cryptoguesser"
description: "cryptoguess"
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
FROM golang:1.12-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/cryptoguesser
WORKDIR /go/src/moul.io/cryptoguess
COPY go.* ./
RUN go mod download
COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.10
COPY --from=builder /go/bin/cryptoguesser /bin/
ENTRYPOINT ["/bin/cryptoguesser"]
COPY --from=builder /go/bin/cryptoguess /bin/
ENTRYPOINT ["/bin/cryptoguess"]
CMD []
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# cryptoguesser

:smile: cryptoguesser does

[![CircleCI](https://circleci.com/gh/moul/cryptoguesser.svg?style=shield)](https://circleci.com/gh/moul/cryptoguesser)
[![GoDoc](https://godoc.org/moul.io/cryptoguesser?status.svg)](https://godoc.org/moul.io/cryptoguesser)
[![License](https://img.shields.io/github/license/moul/cryptoguesser.svg)](https://github.com/moul/cryptoguesser/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/moul/cryptoguesser.svg)](https://github.com/moul/cryptoguesser/releases)
[![Go Report Card](https://goreportcard.com/badge/moul.io/cryptoguesser)](https://goreportcard.com/report/moul.io/cryptoguesser)
[![CodeFactor](https://www.codefactor.io/repository/github/moul/cryptoguesser/badge)](https://www.codefactor.io/repository/github/moul/cryptoguesser)
[![codecov](https://codecov.io/gh/moul/cryptoguesser/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/cryptoguesser)
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/cryptoguesser.svg)](https://microbadger.com/images/moul/cryptoguesser)
# cryptoguess

:smile: cryptoguess does

[![CircleCI](https://circleci.com/gh/moul/cryptoguess.svg?style=shield)](https://circleci.com/gh/moul/cryptoguess)
[![GoDoc](https://godoc.org/moul.io/cryptoguess?status.svg)](https://godoc.org/moul.io/cryptoguess)
[![License](https://img.shields.io/github/license/moul/cryptoguess.svg)](https://github.com/moul/cryptoguess/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/moul/cryptoguess.svg)](https://github.com/moul/cryptoguess/releases)
[![Go Report Card](https://goreportcard.com/badge/moul.io/cryptoguess)](https://goreportcard.com/report/moul.io/cryptoguess)
[![CodeFactor](https://www.codefactor.io/repository/github/moul/cryptoguess/badge)](https://www.codefactor.io/repository/github/moul/cryptoguess)
[![codecov](https://codecov.io/gh/moul/cryptoguess/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/cryptoguess)
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/cryptoguess.svg)](https://microbadger.com/images/moul/cryptoguess)
[![Made by Manfred Touron](https://img.shields.io/badge/made%20by-Manfred%20Touron-blue.svg?style=flat)](https://manfred.life/)


## Usage

```console
$ cryptoguesser -h
$ cryptoguess -h
...
```

## Install

```console
$ go get -u moul.io/cryptoguesser
$ go get -u moul.io/cryptoguess
```

## License

© 2019 [Manfred Touron](https://manfred.life) -
[Apache-2.0 License](https://github.com/moul/cryptoguesser/blob/master/LICENSE)
[Apache-2.0 License](https://github.com/moul/cryptoguess/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion cryptoguess/cryptoguess.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cryptoguess // import "moul.io/cryptoguesser/cryptoguess"
package cryptoguess // import "moul.io/cryptoguess/cryptoguess"
import (
"fmt"
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
// limitations under the License.

// Package main is ...
package main // import "moul.io/cryptoguesser"
package main // import "moul.io/cryptoguess"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module moul.io/cryptoguesser
module moul.io/cryptoguess

go 1.12
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package main // import "moul.io/cryptoguesser"
package main // import "moul.io/cryptoguess"

import (
"bufio"
"fmt"
"io"
"os"

"moul.io/cryptoguesser/cryptoguess"
"moul.io/cryptoguess/cryptoguess"
)

func main() {
Expand Down

0 comments on commit e53b009

Please sign in to comment.