Skip to content

Commit 9481ea8

Browse files
author
Anthony Regeda
committed
Moved to new repo of squirrel
1 parent d2f4692 commit 9481ea8

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ go:
77
- tip
88

99
install:
10-
- go get github.com/Masterminds/squirrel
10+
- go get gopkg.in/Masterminds/squirrel.v1
1111
- go get github.com/onsi/ginkgo/ginkgo
1212
- go get github.com/onsi/gomega
1313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Be faster with Y. The simplest ORM-like framework for Golang.
77
## Install
88

99
```bash
10-
go get github.com/Masterminds/squirrel
10+
go get gopkg.in/Masterminds/squirrel.v1
1111
go get github.com/Repo2/y
1212
```
1313

builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package y
22

3-
import sq "github.com/Masterminds/squirrel"
3+
import sq "gopkg.in/Masterminds/squirrel.v1"
44

55
type builder struct {
66
schema

db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package y
33
import (
44
"database/sql"
55

6-
sq "github.com/Masterminds/squirrel"
6+
sq "gopkg.in/Masterminds/squirrel.v1"
77
)
88

99
// Versionable mixins a version to a model

delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package y
22

33
import (
4-
sq "github.com/Masterminds/squirrel"
4+
sq "gopkg.in/Masterminds/squirrel.v1"
55
)
66

77
type truncator struct {

fetch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package y
22

3-
import sq "github.com/Masterminds/squirrel"
3+
import sq "gopkg.in/Masterminds/squirrel.v1"
44

55
// Finder loads a collection from a database
66
type Finder struct {

proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"database/sql"
55
"reflect"
66

7-
sq "github.com/Masterminds/squirrel"
7+
sq "gopkg.in/Masterminds/squirrel.v1"
88
)
99

1010
// Proxy contains a schema of a type

put.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package y
22

3-
import sq "github.com/Masterminds/squirrel"
3+
import sq "gopkg.in/Masterminds/squirrel.v1"
44

55
// Put inserts new objects
66
func Put(db sq.BaseRunner, p *Proxy) (int64, error) {

update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55
"reflect"
66

7-
sq "github.com/Masterminds/squirrel"
7+
sq "gopkg.in/Masterminds/squirrel.v1"
88
)
99

1010
// Modifier changes a value for update statement

value.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package y
33
import (
44
"reflect"
55

6-
sq "github.com/Masterminds/squirrel"
6+
sq "gopkg.in/Masterminds/squirrel.v1"
77
)
88

99
type wrapper interface {

0 commit comments

Comments
 (0)