File tree 13 files changed +18
-18
lines changed
13 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ import (
4
4
"flag"
5
5
"os"
6
6
7
+ "github.com/gaia-pipeline/gaia"
8
+ "github.com/gaia-pipeline/gaia/handlers"
9
+ "github.com/gaia-pipeline/gaia/store"
7
10
hclog "github.com/hashicorp/go-hclog"
8
11
"github.com/kataras/iris"
9
- "github.com/michelvocks/gaia"
10
- "github.com/michelvocks/gaia/handlers"
11
- "github.com/michelvocks/gaia/store"
12
12
)
13
13
14
14
var (
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaia" ,
3
3
"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." ,
5
5
"repository" : " gaia-pipeline/gaia" ,
6
6
"homepage" : " https://github.com/gaia-pipeline/gaia" ,
7
7
"license" : " Apache-2.0" ,
Original file line number Diff line number Diff line change 4
4
"time"
5
5
6
6
jwt "github.com/dgrijalva/jwt-go"
7
+ "github.com/gaia-pipeline/gaia"
7
8
"github.com/kataras/iris"
8
- "github.com/michelvocks/gaia"
9
9
)
10
10
11
11
// jwtExpiry defines how long the produced jwt tokens
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ package handlers
3
3
import (
4
4
"crypto/rand"
5
5
6
+ "github.com/gaia-pipeline/gaia"
7
+ "github.com/gaia-pipeline/gaia/store"
6
8
"github.com/kataras/iris"
7
- "github.com/michelvocks/gaia"
8
- "github.com/michelvocks/gaia/store"
9
9
)
10
10
11
11
const (
Original file line number Diff line number Diff line change 1
1
package handlers
2
2
3
3
import (
4
+ "github.com/gaia-pipeline/gaia"
5
+ "github.com/gaia-pipeline/gaia/pipeline"
4
6
"github.com/kataras/iris"
5
- "github.com/michelvocks/gaia"
6
- "github.com/michelvocks/gaia/pipeline"
7
7
)
8
8
9
9
// PipelineGitLSRemote checks for available git remote branches.
Original file line number Diff line number Diff line change 4
4
"os"
5
5
"strings"
6
6
7
- "github.com/michelvocks /gaia"
7
+ "github.com/gaia-pipeline /gaia"
8
8
"github.com/satori/go.uuid"
9
9
git "gopkg.in/src-d/go-git.v4"
10
10
"gopkg.in/src-d/go-git.v4/plumbing/transport"
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ import (
4
4
"os"
5
5
"testing"
6
6
7
- "github.com/michelvocks /gaia"
7
+ "github.com/gaia-pipeline /gaia"
8
8
)
9
9
10
10
func TestGitCloneRepo (t * testing.T ) {
11
11
repo := & gaia.GitRepo {
12
- URL : "https://github.com/michelvocks /gaia" ,
12
+ URL : "https://github.com/gaia-pipeline /gaia" ,
13
13
}
14
14
err := GitCloneRepo (repo )
15
15
if err != nil {
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ package plugin
3
3
import (
4
4
"context"
5
5
6
+ "github.com/gaia-pipeline/gaia/proto"
6
7
plugin "github.com/hashicorp/go-plugin"
7
- "github.com/michelvocks/gaia/proto"
8
8
"google.golang.org/grpc"
9
9
)
10
10
Original file line number Diff line number Diff line change 4
4
"errors"
5
5
"os/exec"
6
6
7
+ "github.com/gaia-pipeline/gaia/proto"
7
8
plugin "github.com/hashicorp/go-plugin"
8
- "github.com/michelvocks/gaia/proto"
9
9
)
10
10
11
11
const (
Original file line number Diff line number Diff line change 1
1
package golang
2
2
3
- import "github.com/michelvocks /gaia/proto"
3
+ import "github.com/gaia-pipeline /gaia/proto"
4
4
5
5
// Jobs new type for wrapper around proto.job
6
6
type Jobs []JobsWrapper
Original file line number Diff line number Diff line change 9
9
"net"
10
10
"os"
11
11
12
- "github.com/michelvocks /gaia/proto"
12
+ "github.com/gaia-pipeline /gaia/proto"
13
13
"google.golang.org/grpc"
14
14
"google.golang.org/grpc/health"
15
15
healthpb "google.golang.org/grpc/health/grpc_health_v1"
Original file line number Diff line number Diff line change 6
6
"os"
7
7
8
8
bolt "github.com/coreos/bbolt"
9
- "github.com/michelvocks /gaia"
9
+ "github.com/gaia-pipeline /gaia"
10
10
"golang.org/x/crypto/bcrypt"
11
11
)
12
12
Original file line number Diff line number Diff line change 5
5
"os"
6
6
"testing"
7
7
8
- "github.com/michelvocks /gaia"
8
+ "github.com/gaia-pipeline /gaia"
9
9
)
10
10
11
11
var store * Store
You can’t perform that action at this time.
0 commit comments