Skip to content

Commit de1f859

Browse files
authored
Merge pull request #39 from jehiah/go_mod_39
Go module support
2 parents d40f54a + 75d51de commit de1f859

8 files changed

+28
-12
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
language: go
22
go:
3-
- 1.7
4-
- 1.8
3+
- 1.x
54
sudo: false
6-
install:
7-
- go get github.com/bmizerany/assert
85
notifications:
96
email: false
107

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ json2csv
33

44
Converts a stream of newline separated json data to csv format.
55

6-
[![Build Status](https://travis-ci.org/jehiah/json2csv.png?branch=master)](https://travis-ci.org/jehiah/json2csv)
6+
[![Build Status](https://travis-ci.org/jehiah/json2csv.png?branch=master)](https://travis-ci.org/jehiah/json2csv) [![GitHub release](https://img.shields.io/github/release/jehiah/json2csv.svg)](https://github.com/jehiah/json2csv/releases/latest)
77

88

99
Installation

dist.sh

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
77
echo "working dir $DIR"
88

99
echo "... running tests"
10-
go test|| exit 1
10+
go test ./... || exit 1
1111

1212
arch=$(go env GOARCH)
1313
version=$(cat $DIR/version.go | grep "const VERSION" | awk '{print $NF}' | sed 's/"//g')
@@ -17,15 +17,17 @@ for os in linux darwin; do
1717
echo "... building v$version for $os/$arch"
1818
BUILD=$(mktemp -d -t json2csv)
1919
TARGET="json2csv-$version.$os-$arch.$goversion"
20-
GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build
2120
mkdir -p $BUILD/$TARGET
22-
cp json2csv $BUILD/$TARGET/json2csv
21+
GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build -o $BUILD/$TARGET/json2csv
22+
2323
pushd $BUILD >/dev/null
2424
tar czvf $TARGET.tar.gz $TARGET
2525
if [ -e $DIR/dist/$TARGET.tar.gz ]; then
2626
echo "... WARNING overwriting dist/$TARGET.tar.gz"
2727
fi
28-
mv $TARGET.tar.gz $DIR/dist
28+
29+
mkdir -p $DIR/dist
30+
mv $TARGET.tar.gz $DIR/dist/
2931
echo "... built dist/$TARGET.tar.gz"
3032
popd >/dev/null
3133
done

go.mod

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module github.com/jehiah/json2csv
2+
3+
go 1.13
4+
5+
require github.com/stretchr/testify v1.4.0

go.sum

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
2+
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
5+
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
6+
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
7+
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
8+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
9+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
10+
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
11+
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"log"
1111
"math"
1212
"os"
13+
"runtime"
1314
"strings"
1415
"unicode/utf8"
1516
)
@@ -29,7 +30,7 @@ func main() {
2930
flag.Parse()
3031

3132
if *showVersion {
32-
fmt.Printf("json2csv %s\n", VERSION)
33+
fmt.Printf("json2csv v%s (built w/%s)\n", VERSION, runtime.Version())
3334
return
3435
}
3536

main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/bmizerany/assert"
11+
"github.com/stretchr/testify/assert"
1212
)
1313

1414
func TestGetTopic(t *testing.T) {

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const VERSION = "1.2.0"
3+
const VERSION = "1.2.1"

0 commit comments

Comments
 (0)