From d202c6a31c35a102df9077366adbd3b4074bcfc1 Mon Sep 17 00:00:00 2001 From: joeybloggs Date: Thu, 24 Sep 2015 07:38:39 -0400 Subject: [PATCH] changed organization from bluesuncorp to go-playground --- README.md | 18 +++++++++--------- examples/custom/custom.go | 2 +- examples/simple/simple.go | 2 +- examples_test.go | 2 +- validator_test.go | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 880ab66..a7bfa18 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ Package validator ================ -[![Join the chat at https://gitter.im/bluesuncorp/validator](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bluesuncorp/validator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Join the chat at https://gitter.im/go-playground/validator](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/go-playground/validator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://semaphoreci.com/api/v1/projects/ec20115f-ef1b-4c7d-9393-cc76aba74eb4/487383/badge.svg)](https://semaphoreci.com/joeybloggs/validator) -[![Coverage Status](https://coveralls.io/repos/bluesuncorp/validator/badge.svg?branch=v6)](https://coveralls.io/r/bluesuncorp/validator?branch=v6) -[![GoDoc](https://godoc.org/gopkg.in/bluesuncorp/validator.v6?status.svg)](https://godoc.org/gopkg.in/bluesuncorp/validator.v6) +[![Coverage Status](https://coveralls.io/repos/go-playground/validator/badge.svg?branch=v6)](https://coveralls.io/r/go-playground/validator?branch=v6) +[![GoDoc](https://godoc.org/gopkg.in/go-playground/validator.v6?status.svg)](https://godoc.org/gopkg.in/go-playground/validator.v6) Package validator implements value validations for structs and individual fields based on tags. @@ -20,20 +20,20 @@ Installation Use go get. - go get gopkg.in/bluesuncorp/validator.v6 + go get gopkg.in/go-playground/validator.v6 or to update - go get -u gopkg.in/bluesuncorp/validator.v6 + go get -u gopkg.in/go-playground/validator.v6 Then import the validator package into your own code. - import "gopkg.in/bluesuncorp/validator.v6" + import "gopkg.in/go-playground/validator.v6" Usage and documentation ------ -Please see http://godoc.org/gopkg.in/bluesuncorp/validator.v6 for detailed usage docs. +Please see http://godoc.org/gopkg.in/go-playground/validator.v6 for detailed usage docs. ##### Examples: @@ -44,7 +44,7 @@ package main import ( "fmt" - "gopkg.in/bluesuncorp/validator.v6" + "gopkg.in/go-playground/validator.v6" ) // User contains user information @@ -143,7 +143,7 @@ import ( "fmt" "reflect" - "gopkg.in/bluesuncorp/validator.v6" + "gopkg.in/go-playground/validator.v6" ) // DbBackedUser User struct diff --git a/examples/custom/custom.go b/examples/custom/custom.go index 897b17f..423f922 100644 --- a/examples/custom/custom.go +++ b/examples/custom/custom.go @@ -6,7 +6,7 @@ import ( "fmt" "reflect" - "gopkg.in/bluesuncorp/validator.v6" + "gopkg.in/go-playground/validator.v6" ) // DbBackedUser User struct diff --git a/examples/simple/simple.go b/examples/simple/simple.go index b685dda..7927a6c 100644 --- a/examples/simple/simple.go +++ b/examples/simple/simple.go @@ -7,7 +7,7 @@ import ( sql "database/sql/driver" - "gopkg.in/bluesuncorp/validator.v6" + "gopkg.in/go-playground/validator.v6" ) // User contains user information diff --git a/examples_test.go b/examples_test.go index f2dad92..9d4d319 100644 --- a/examples_test.go +++ b/examples_test.go @@ -3,7 +3,7 @@ package validator_test import ( "fmt" - "gopkg.in/bluesuncorp/validator.v6" + "gopkg.in/go-playground/validator.v6" ) func ExampleValidate_new() { diff --git a/validator_test.go b/validator_test.go index 42085f0..6ea9905 100644 --- a/validator_test.go +++ b/validator_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - . "gopkg.in/bluesuncorp/assert.v1" + . "gopkg.in/go-playground/assert.v1" ) // NOTES: