From 3bab7504d9dbc33a97a74fa5340203ebb79e0aa3 Mon Sep 17 00:00:00 2001 From: Sho Kusano Date: Mon, 24 Oct 2016 14:40:43 +0900 Subject: [PATCH] v1.0.0 --- .gitignore | 1 + LICENSE.txt | 21 +++++++++++++++++++++ Makefile | 7 +++++++ README.md | 36 +++++++++++++++++++++++++++++++++++- VERSION | 2 +- 5 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 LICENSE.txt diff --git a/.gitignore b/.gitignore index ba077a4..5682f9e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ bin +pkg diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..59a444b --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Sho Kusano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Makefile b/Makefile index f77e81b..af3042d 100644 --- a/Makefile +++ b/Makefile @@ -17,5 +17,12 @@ $(BINARY): $(SRC) build: $(BINARY) +gox: + @gox $(GOFLAG) -output "pkg/ginsa_{{.OS}}_{{.Arch}}/ginsa" github.com/zengin-code/ginsa/cli + @for target in `find pkg -type d -depth 1`; do\ + (cd pkg; zip -r `basename $$target`.zip `basename $$target`); \ + rm -rf $$target; \ + done + deps: @git grep github.com | sed -e "s/\"$$//" | sed -e "s/^.*\"//" | sort | uniq | grep -v depscribe diff --git a/README.md b/README.md index 7214281..e2bf011 100644 --- a/README.md +++ b/README.md @@ -1 +1,35 @@ -# Ginsa +# Ginsa / 銀砂 + +Colorful diff for Zengin Codes. + +## Install + +You can download binary from [releases](https://github.com/zengin-code/ginsa/releases) page and place it in $PATH directory. + +## Usage + +### `tags` + +``` +$ ginsa tags +``` + +Show all tags of [zengin-code/source-data](https://github.com/zengin-code/source-data). + +### `diff` + +``` +$ ginsa diff +# ex: +$ ginsa diff 2016-10-02 +``` + +Show diff of the tag. + +## Author + +Sho Kusano / @rosylilly + +## License + +MIT diff --git a/VERSION b/VERSION index 77d6f4c..3eefcb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.0 +1.0.0