Skip to content

Commit

Permalink
add meta files
Browse files Browse the repository at this point in the history
  • Loading branch information
Songmu committed Jun 13, 2017
1 parent fd0b7df commit 24ba739
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
@@ -0,0 +1,9 @@
language: go
go:
- 1.8
- tip
script:
- make lint
- make test
after_script:
- make cover
22 changes: 22 additions & 0 deletions LICENSE
@@ -0,0 +1,22 @@
Copyright (c) 2017 Songmu

MIT License

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.
17 changes: 17 additions & 0 deletions Makefile
@@ -0,0 +1,17 @@
test: deps
go test ./...

deps:
go get -d -v -t ./...
go get github.com/golang/lint/golint
go get golang.org/x/tools/cmd/cover
go get github.com/mattn/goveralls

lint: deps
go vet ./...
golint -set_exit_status ./...

cover: deps
goveralls

.PHONY: test deps lint cover
19 changes: 19 additions & 0 deletions README.md
@@ -0,0 +1,19 @@
axslogparser
=======

[![Build Status](https://travis-ci.org/Songmu/axslogparser.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/axslogparser?status.svg)][godoc]

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

## Description

An accesslog parser supports apache log (common and combined) and ltsv access log.

## Author

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

0 comments on commit 24ba739

Please sign in to comment.