Skip to content

Commit

Permalink
Switch from godep & rewriting import paths to GO15VENDOREXPERIMENT
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jan 20, 2016
1 parent d0ad43d commit 1b862e3
Show file tree
Hide file tree
Showing 280 changed files with 131 additions and 223 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -6,7 +6,7 @@ This project adheres to the [Open Code of Conduct][code-of-conduct]. By particip

You will need:

1. Go 1.4 or better
1. Go 1.5 or better
1. Ruby 1.9+
2. git 1.8+
3. tmux & zsh (optional) - for running shell completion tests
Expand Down
87 changes: 0 additions & 87 deletions Godeps/Godeps.json

This file was deleted.

5 changes: 0 additions & 5 deletions Godeps/Readme

This file was deleted.

2 changes: 0 additions & 2 deletions Godeps/_workspace/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion cmd/cmd.go
Expand Up @@ -8,9 +8,9 @@ import (
"strings"
"syscall"

"github.com/github/hub/Godeps/_workspace/src/github.com/kballard/go-shellquote"
"github.com/github/hub/ui"
"github.com/github/hub/utils"
"github.com/kballard/go-shellquote"
)

type Cmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd_test.go
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestNew(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion commands/args_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestNewArgs(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion commands/checkout_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestReplaceCheckoutParam(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion commands/cherry_pick_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/fixtures"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/clone_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/github"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/commands.go
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

flag "github.com/github/hub/Godeps/_workspace/src/github.com/ogier/pflag"
"github.com/github/hub/ui"
flag "github.com/ogier/pflag"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion commands/commands_test.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/ui"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/compare_test.go
@@ -1,7 +1,7 @@
package commands

import (
"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/fetch_test.go
@@ -1,7 +1,7 @@
package commands

import (
"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/help_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestRunHelp(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion commands/init_test.go
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/github"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/pull_request.go
Expand Up @@ -5,10 +5,10 @@ import (
"regexp"
"strings"

"github.com/github/hub/Godeps/_workspace/src/github.com/octokit/go-octokit/octokit"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"github.com/octokit/go-octokit/octokit"
)

var cmdPullRequest = &Command{
Expand Down
2 changes: 1 addition & 1 deletion commands/pull_request_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/github"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/pull_request_tpl_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestRenderPullRequestTpl(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion commands/push_test.go
@@ -1,7 +1,7 @@
package commands

import (
"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/release.go
Expand Up @@ -9,11 +9,11 @@ import (
"path/filepath"
"strings"

"github.com/github/hub/Godeps/_workspace/src/github.com/octokit/go-octokit/octokit"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/ui"
"github.com/github/hub/utils"
"github.com/octokit/go-octokit/octokit"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion commands/release_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/fixtures"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/release_tpl_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestRenderReleaseTpl(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion commands/remote_test.go
@@ -1,7 +1,7 @@
package commands

import (
"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/github"
"os"
"regexp"
Expand Down
4 changes: 2 additions & 2 deletions commands/runner.go
Expand Up @@ -7,12 +7,12 @@ import (
"strings"
"syscall"

"github.com/github/hub/Godeps/_workspace/src/github.com/kballard/go-shellquote"
flag "github.com/github/hub/Godeps/_workspace/src/github.com/ogier/pflag"
"github.com/github/hub/cmd"
"github.com/github/hub/git"
"github.com/github/hub/ui"
"github.com/github/hub/utils"
"github.com/kballard/go-shellquote"
flag "github.com/ogier/pflag"
)

type ExecError struct {
Expand Down
2 changes: 1 addition & 1 deletion commands/runner_test.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/cmd"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/submodule_test.go
@@ -1,7 +1,7 @@
package commands

import (
"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/github"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion commands/updater.go
Expand Up @@ -13,12 +13,12 @@ import (
"strings"
"time"

goupdate "github.com/github/hub/Godeps/_workspace/src/github.com/inconshreveable/go-update"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/ui"
"github.com/github/hub/utils"
"github.com/github/hub/version"
goupdate "github.com/inconshreveable/go-update"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion commands/updater_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"path/filepath"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/fixtures"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/utils_test.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestReadMsg(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion git/git_test.go
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
"github.com/github/hub/fixtures"
)

Expand Down
2 changes: 1 addition & 1 deletion git/ssh_config_test.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestSSHConfigReader_Read(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion git/url_test.go
Expand Up @@ -3,7 +3,7 @@ package git
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func createURLParser() *URLParser {
Expand Down
2 changes: 1 addition & 1 deletion github/branch_test.go
Expand Up @@ -3,7 +3,7 @@ package github
import (
"testing"

"github.com/github/hub/Godeps/_workspace/src/github.com/bmizerany/assert"
"github.com/bmizerany/assert"
)

func TestBranch_ShortName(t *testing.T) {
Expand Down

0 comments on commit 1b862e3

Please sign in to comment.