From a660c007dcf61b61ecd8b343353fca5f04ec07cd Mon Sep 17 00:00:00 2001 From: Dean Karn Date: Thu, 9 Apr 2015 20:38:05 -0400 Subject: [PATCH] update for new organization update README, links and documentation for new organization --- .travis.yml | 2 +- README.md | 12 ++++++------ doc.go | 2 +- validator_test.go | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 26ee50c..d8545cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: go notificaitons: email: - recipients: dean.karn@gmail.com + recipients: bluesuncorp01@gmail.com on_success: change on_failure: always diff --git a/README.md b/README.md index f01a048..7704f4d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Package go-validate-yourself ================ -[![Build Status](https://travis-ci.org/joeybloggs/go-validate-yourself.svg?branch=v4)](https://travis-ci.org/joeybloggs/go-validate-yourself) -[![GoDoc](https://godoc.org/gopkg.in/joeybloggs/go-validate-yourself.v4?status.svg)](https://godoc.org/gopkg.in/joeybloggs/go-validate-yourself.v4) +[![Build Status](https://travis-ci.org/bluesuncorp/go-validate-yourself.svg?branch=v4)](https://travis-ci.org/bluesuncorp/go-validate-yourself) +[![GoDoc](https://godoc.org/gopkg.in/bluesuncorp/go-validate-yourself.v4?status.svg)](https://godoc.org/gopkg.in/bluesuncorp/go-validate-yourself.v4) Package validator implements value validations for structs and individual fields based on tags. @@ -10,20 +10,20 @@ Installation Just use go get. - go get gopkg.in/joeybloggs/go-validate-yourself.v4 + go get gopkg.in/bluesuncorp/go-validate-yourself.v4 or to update - go get -u gopkg.in/joeybloggs/go-validate-yourself.v4 + go get -u gopkg.in/bluesuncorp/go-validate-yourself.v4 And then just import the package into your own code. - import "gopkg.in/joeybloggs/go-validate-yourself.v4" + import "gopkg.in/bluesuncorp/go-validate-yourself.v4" Usage ===== -Please see http://godoc.org/gopkg.in/joeybloggs/go-validate-yourself.v4 for detailed usage docs. +Please see http://godoc.org/gopkg.in/bluesuncorp/go-validate-yourself.v4 for detailed usage docs. Contributing ============ diff --git a/doc.go b/doc.go index 6f30a72..06ccee3 100644 --- a/doc.go +++ b/doc.go @@ -55,7 +55,7 @@ intended use is for development + debugging, not a production error message. Why not a better error message? because this library intends for you to handle your own error messages -Why should I handle my own errors? Many reasons, for me building an internationalized application +Why should I handle my own errors? Many reasons, for us building an internationalized application I needed to know the field and what validation failed so that I could provide an error in the users specific language. if fieldErr.Field == "Name" { diff --git a/validator_test.go b/validator_test.go index 89f0003..4d8f0c0 100644 --- a/validator_test.go +++ b/validator_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/joeybloggs/go-validate-yourself" + "gopkg.in/bluesuncorp/go-validate-yourself.v4" . "gopkg.in/check.v1" )