mirror of
https://github.com/minio/minio.git
synced 2025-11-10 14:09:48 -05:00
Change all minio-io path to minio
This commit is contained in:
4
Godeps/_workspace/src/github.com/minio-io/check/README.md
generated
vendored
4
Godeps/_workspace/src/github.com/minio-io/check/README.md
generated
vendored
@@ -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.
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/benchmark_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/benchmark_test.go
generated
vendored
@@ -3,7 +3,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/bootstrap_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/bootstrap_test.go
generated
vendored
@@ -14,7 +14,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/check_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/check_test.go
generated
vendored
@@ -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
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/checkers_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/checkers_test.go
generated
vendored
@@ -2,7 +2,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"reflect"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/fixture_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/fixture_test.go
generated
vendored
@@ -3,7 +3,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
)
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/foundation_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/foundation_test.go
generated
vendored
@@ -8,7 +8,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"log"
|
||||
"os"
|
||||
"regexp"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/helpers_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/helpers_test.go
generated
vendored
@@ -4,7 +4,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"os"
|
||||
"reflect"
|
||||
"runtime"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/printer_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/printer_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
)
|
||||
|
||||
var _ = Suite(&PrinterS{})
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/check/run_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/check/run_test.go
generated
vendored
@@ -4,7 +4,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"errors"
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
"os"
|
||||
"sync"
|
||||
)
|
||||
|
||||
10
Godeps/_workspace/src/github.com/minio-io/cli/README.md
generated
vendored
10
Godeps/_workspace/src/github.com/minio-io/cli/README.md
generated
vendored
@@ -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() {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/cli/app_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/cli/app_test.go
generated
vendored
@@ -6,7 +6,7 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func ExampleApp() {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/cli/cli_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/cli/cli_test.go
generated
vendored
@@ -3,7 +3,7 @@ package cli_test
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func Example() {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/cli/command_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/cli/command_test.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"flag"
|
||||
"testing"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func TestCommandDoNotIgnoreFlags(t *testing.T) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/cli/context_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/cli/context_test.go
generated
vendored
@@ -5,7 +5,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func TestNewContext(t *testing.T) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/minio-io/cli/flag_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/minio-io/cli/flag_test.go
generated
vendored
@@ -7,7 +7,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
var boolFlagTests = []struct {
|
||||
|
||||
Reference in New Issue
Block a user