Skip to content

Commit

Permalink
add meta files
Browse files Browse the repository at this point in the history
  • Loading branch information
Songmu committed Jul 10, 2016
1 parent 4bc0380 commit 7998c2f
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.*
!.gitignore
!.travis.yml
!.goxc.json
dist/
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: go
go:
- tip
script:
- make lint
- make test
after_script:
- make cover
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
test: deps
go test

deps:
go get -d -v -t ./...
go get github.com/golang/lint/golint
go get github.com/mattn/goveralls

lint: deps
go vet
golint -set_exit_status

cover: deps
goveralls

.PHONY: test deps lint cover
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
go-ltsv
=======

[![Build Status](https://travis-ci.org/Songmu/go-ltsv.png?branch=master)][travis]
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)][license]
[![GoDoc](https://godoc.org/github.com/Songmu/go-ltsv?status.svg)][godoc]

[travis]: https://travis-ci.org/Songmu/go-ltsv
[coveralls]: https://coveralls.io/r/Songmu/go-ltsv?branch=master
[license]: https://github.com/Songmu/go-ltsv/blob/master/LICENSE
[godoc]: https://godoc.org/github.com/Songmu/go-ltsv

## Description

LTSV parser and encoder for Go with reflection

## Installation

% go get github.com/Songmu/go-ltsv

## Author

[Songmu](https://github.com/Songmu)

0 comments on commit 7998c2f

Please sign in to comment.