Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename sensei-client to seito #23

Merged
merged 1 commit into from May 24, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
@@ -0,0 +1,2 @@
all:
@seito | sed 's/\x1B\[[0-9;]*[JKmsu]//g'
10 changes: 5 additions & 5 deletions README.md
@@ -1,6 +1,6 @@
__THIS IS EXPERIMENTAL ROCKET SCIENCE! USE AT YOUR OWN RISK!__
__THIS IS EXPERIMENTAL STUFF! USE AT YOUR OWN RISK!__

# sensei
# 先生 (*rōmaji* sensei)

In it's simplest form, you run `sensei` with the `Main` module of your test
suite as an argument:
Expand Down Expand Up @@ -28,9 +28,9 @@ how they look:

## Accessing result on the command-line

You can access the results of the last test run with `sensei-client`:
You can access the results of the last test run with `seito`:

sensei-client
seito

Alternatively, if you have `curl` version `7.40.0` or newer, you can use `curl`
instead:
Expand All @@ -44,7 +44,7 @@ Create a Makefile with the following content:

```Makefile
all:
sensei-client | sed 's/\x1B\[[0-9;]*[JKmsu]//g'
@seito | sed 's/\x1B\[[0-9;]*[JKmsu]//g'
```

(`sed` is used to strip ANSI color sequences)
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Expand Up @@ -35,7 +35,7 @@ executables:
dependencies:
- sensei

sensei-client:
seito:
main: driver/Client.hs
dependencies:
- sensei
Expand Down
8 changes: 4 additions & 4 deletions sensei.cabal
Expand Up @@ -39,8 +39,8 @@ library
ghc-options: -Wall
default-language: Haskell2010

executable sensei-client
main-is: driver/Client.hs
executable sensei-web
main-is: driver/Web.hs
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
Expand All @@ -63,8 +63,8 @@ executable sensei-client
ghc-options: -Wall
default-language: Haskell2010

executable sensei-web
main-is: driver/Web.hs
executable seito
main-is: driver/Client.hs
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
Expand Down