Change all minio-io path to minio

This commit is contained in:
Harshavardhana
2015-05-11 16:23:10 -07:00
parent e39de4f603
commit 8d06504068
68 changed files with 127 additions and 127 deletions

View File

@@ -3,11 +3,11 @@ Instructions
Install the package with:
go get github.com/minio-io/check
go get github.com/minio/check
Import it with:
import "github.com/minio-io/check"
import "github.com/minio/check"
and use _check_ as the package name inside the code.

View File

@@ -3,7 +3,7 @@
package check_test
import (
. "github.com/minio-io/check"
. "github.com/minio/check"
"time"
)

View File

@@ -14,7 +14,7 @@ package check_test
import (
"fmt"
"github.com/minio-io/check"
"github.com/minio/check"
"strings"
)

View File

@@ -12,7 +12,7 @@ import (
"testing"
"time"
"github.com/minio-io/check"
"github.com/minio/check"
)
// We count the number of suites run at least to get a vague hint that the

View File

@@ -2,7 +2,7 @@ package check_test
import (
"errors"
"github.com/minio-io/check"
"github.com/minio/check"
"reflect"
"runtime"
)

View File

@@ -3,7 +3,7 @@
package check_test
import (
. "github.com/minio-io/check"
. "github.com/minio/check"
)
// -----------------------------------------------------------------------

View File

@@ -8,7 +8,7 @@ package check_test
import (
"fmt"
"github.com/minio-io/check"
"github.com/minio/check"
"log"
"os"
"regexp"

View File

@@ -4,7 +4,7 @@
package check_test
import (
"github.com/minio-io/check"
"github.com/minio/check"
"os"
"reflect"
"runtime"

View File

@@ -1,7 +1,7 @@
package check_test
import (
. "github.com/minio-io/check"
. "github.com/minio/check"
)
var _ = Suite(&PrinterS{})

View File

@@ -4,7 +4,7 @@ package check_test
import (
"errors"
. "github.com/minio-io/check"
. "github.com/minio/check"
"os"
"sync"
)

View File

@@ -2,7 +2,7 @@
cli.go is simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way. - This is a fork of ``github.com/codegangsta/cli`` until our patches get merge upstream
You can view the API docs here:
http://godoc.org/github.com/minio-io/cli
http://godoc.org/github.com/minio/cli
## Overview
Command line apps are usually so tiny that there is absolutely no reason why your code should *not* be self-documenting. Things like generating help text and parsing command flags should not hinder productivity when writing a command line app.
@@ -14,7 +14,7 @@ Make sure you have a working Go environment (go 1.1 is *required*). [See the ins
To install `cli.go`, simply run:
```
$ go get github.com/minio-io/cli
$ go get github.com/minio/cli
```
Make sure your `PATH` includes to the `$GOPATH/bin` directory so your commands can be easily used:
@@ -30,7 +30,7 @@ package main
import (
"os"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func main() {
@@ -45,7 +45,7 @@ package main
import (
"os"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func main() {
@@ -73,7 +73,7 @@ package main
import (
"os"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func main() {

View File

@@ -6,7 +6,7 @@ import (
"os"
"testing"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func ExampleApp() {

View File

@@ -3,7 +3,7 @@ package cli_test
import (
"os"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func Example() {

View File

@@ -4,7 +4,7 @@ import (
"flag"
"testing"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func TestCommandDoNotIgnoreFlags(t *testing.T) {

View File

@@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
func TestNewContext(t *testing.T) {

View File

@@ -7,7 +7,7 @@ import (
"strings"
"testing"
"github.com/minio-io/cli"
"github.com/minio/cli"
)
var boolFlagTests = []struct {