Skip to content

Commit c5f6ac0

Browse files
committed
Moved gaia repository to organization gaia-pipeline
1 parent d3610e6 commit c5f6ac0

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

cmd/gaia/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"flag"
55
"os"
66

7+
"github.com/gaia-pipeline/gaia"
8+
"github.com/gaia-pipeline/gaia/handlers"
9+
"github.com/gaia-pipeline/gaia/store"
710
hclog "github.com/hashicorp/go-hclog"
811
"github.com/kataras/iris"
9-
"github.com/michelvocks/gaia"
10-
"github.com/michelvocks/gaia/handlers"
11-
"github.com/michelvocks/gaia/store"
1212
)
1313

1414
var (

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gaia",
33
"version": "0.1.1",
4-
"description": "Build powerful automation pipelines in the langauge you think is the best.",
4+
"description": "Build powerful automation pipelines in a language you may think is the best.",
55
"repository": "gaia-pipeline/gaia",
66
"homepage": "https://github.com/gaia-pipeline/gaia",
77
"license": "Apache-2.0",

handlers/User.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"time"
55

66
jwt "github.com/dgrijalva/jwt-go"
7+
"github.com/gaia-pipeline/gaia"
78
"github.com/kataras/iris"
8-
"github.com/michelvocks/gaia"
99
)
1010

1111
// jwtExpiry defines how long the produced jwt tokens

handlers/handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package handlers
33
import (
44
"crypto/rand"
55

6+
"github.com/gaia-pipeline/gaia"
7+
"github.com/gaia-pipeline/gaia/store"
68
"github.com/kataras/iris"
7-
"github.com/michelvocks/gaia"
8-
"github.com/michelvocks/gaia/store"
99
)
1010

1111
const (

handlers/pipeline.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package handlers
22

33
import (
4+
"github.com/gaia-pipeline/gaia"
5+
"github.com/gaia-pipeline/gaia/pipeline"
46
"github.com/kataras/iris"
5-
"github.com/michelvocks/gaia"
6-
"github.com/michelvocks/gaia/pipeline"
77
)
88

99
// PipelineGitLSRemote checks for available git remote branches.

pipeline/git.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"strings"
66

7-
"github.com/michelvocks/gaia"
7+
"github.com/gaia-pipeline/gaia"
88
"github.com/satori/go.uuid"
99
git "gopkg.in/src-d/go-git.v4"
1010
"gopkg.in/src-d/go-git.v4/plumbing/transport"

pipeline/git_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"os"
55
"testing"
66

7-
"github.com/michelvocks/gaia"
7+
"github.com/gaia-pipeline/gaia"
88
)
99

1010
func TestGitCloneRepo(t *testing.T) {
1111
repo := &gaia.GitRepo{
12-
URL: "https://github.com/michelvocks/gaia",
12+
URL: "https://github.com/gaia-pipeline/gaia",
1313
}
1414
err := GitCloneRepo(repo)
1515
if err != nil {

plugin/grpc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package plugin
33
import (
44
"context"
55

6+
"github.com/gaia-pipeline/gaia/proto"
67
plugin "github.com/hashicorp/go-plugin"
7-
"github.com/michelvocks/gaia/proto"
88
"google.golang.org/grpc"
99
)
1010

plugin/plugin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"errors"
55
"os/exec"
66

7+
"github.com/gaia-pipeline/gaia/proto"
78
plugin "github.com/hashicorp/go-plugin"
8-
"github.com/michelvocks/gaia/proto"
99
)
1010

1111
const (

sdk/golang/job.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package golang
22

3-
import "github.com/michelvocks/gaia/proto"
3+
import "github.com/gaia-pipeline/gaia/proto"
44

55
// Jobs new type for wrapper around proto.job
66
type Jobs []JobsWrapper

sdk/golang/sdk.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net"
1010
"os"
1111

12-
"github.com/michelvocks/gaia/proto"
12+
"github.com/gaia-pipeline/gaia/proto"
1313
"google.golang.org/grpc"
1414
"google.golang.org/grpc/health"
1515
healthpb "google.golang.org/grpc/health/grpc_health_v1"

store/store.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77

88
bolt "github.com/coreos/bbolt"
9-
"github.com/michelvocks/gaia"
9+
"github.com/gaia-pipeline/gaia"
1010
"golang.org/x/crypto/bcrypt"
1111
)
1212

store/store_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/michelvocks/gaia"
8+
"github.com/gaia-pipeline/gaia"
99
)
1010

1111
var store *Store

0 commit comments

Comments
 (0)