Skip to content

Commit

Permalink
Merge pull request #16 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 0.5.0
  • Loading branch information
andyone authored Apr 16, 2017
2 parents 9e74335 + 0c2e7fb commit dd80084
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
########################################################################################

# This Makefile generated by GoMakeGen 0.4.0 using next command:
# gomakegen .
# This Makefile generated by GoMakeGen 0.5.0 using next command:
# gomakegen --metalinter .

########################################################################################

.PHONY = fmt all clean deps
.PHONY = fmt all clean deps metalinter

########################################################################################

Expand All @@ -16,11 +16,15 @@ knfgen:

deps:
git config --global http.https://pkg.re.followRedirects true
go get -v pkg.re/essentialkaos/ek.v7
go get -d -v pkg.re/essentialkaos/ek.v8

fmt:
find . -name "*.go" -exec gofmt -s -w {} \;

metalinter:
test -s $(GOPATH)/bin/gometalinter || (go get -u github.com/alecthomas/gometalinter ; $(GOPATH)/bin/gometalinter --install)
$(GOPATH)/bin/gometalinter --deadline 30s

clean:
rm -f knfgen

Expand Down
18 changes: 9 additions & 9 deletions knfgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ import (
"strconv"
"strings"

"pkg.re/essentialkaos/ek.v7/arg"
"pkg.re/essentialkaos/ek.v7/env"
"pkg.re/essentialkaos/ek.v7/fmtc"
"pkg.re/essentialkaos/ek.v7/fmtutil"
"pkg.re/essentialkaos/ek.v7/fsutil"
"pkg.re/essentialkaos/ek.v7/knf"
"pkg.re/essentialkaos/ek.v7/mathutil"
"pkg.re/essentialkaos/ek.v7/usage"
"pkg.re/essentialkaos/ek.v8/arg"
"pkg.re/essentialkaos/ek.v8/env"
"pkg.re/essentialkaos/ek.v8/fmtc"
"pkg.re/essentialkaos/ek.v8/fmtutil"
"pkg.re/essentialkaos/ek.v8/fsutil"
"pkg.re/essentialkaos/ek.v8/knf"
"pkg.re/essentialkaos/ek.v8/mathutil"
"pkg.re/essentialkaos/ek.v8/usage"
)

// ////////////////////////////////////////////////////////////////////////////////// //

const (
APP = "KNFGen"
VER = "0.4.0"
VER = "0.5.0"
DESC = "Utility for generating Golang const code for KNF configs"
)

Expand Down

0 comments on commit dd80084

Please sign in to comment.