From 424c10b24a6f0a413daeca41e61692098d3c47bf Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 22 May 2013 21:23:16 -0400 Subject: [PATCH] license and readme --- README.md | 4 +++- gpm_test.go | 13 +++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 gpm_test.go diff --git a/README.md b/README.md index 4f61747da..f9b47695e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,9 @@ gpm - Go Package Manager gpm(Go Package Manager) is a Go package manage tool for search, install, update, share and backup packages in Go. -[![Build Status](https://travis-ci.org/GPMGo/gpm.png)](https://travis-ci.org/GPMGo/gpm) +[![Build Status](https://travis-ci.org/GPMGo/gpm.png)](https://travis-ci.org/GPMGo/gpm) [![Build Status](https://drone.io/github.com/GPMGo/gpm/status.png)](https://drone.io/github.com/GPMGo/gpm/latest) [![Coverage Status](https://coveralls.io/repos/GPMGo/gpm/badge.png)](https://coveralls.io/r/GPMGo/gpm) + +(Travis CI hasn't support Go 1.1 yet) This application still in experiment, any change could happen, but it doesn't affect download and install packages. diff --git a/gpm_test.go b/gpm_test.go new file mode 100644 index 000000000..50ccde81a --- /dev/null +++ b/gpm_test.go @@ -0,0 +1,13 @@ +// Copyright (c) 2013 GPMGo Members. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" +) + +func testGPM() { + fmt.Println("gpm v0.1.4 Build 0522") +}