Change a few files to migrate GitHub repository names.
diff --git a/glide.lock b/glide.lock
index 7097a68..049b930 100644
--- a/glide.lock
+++ b/glide.lock
@@ -1,5 +1,5 @@
-hash: f295b6c2454813dff2e01afc69d751c108a60e5ca9c4d9907cb178000164a797
-updated: 2017-01-25T22:43:30.054011881Z
+hash: 018044a08de3d28cafaf089ab5346e0532ccb67463b08101e3ead4feadd073bf
+updated: 2017-09-20T15:40:18.336136467-07:00
imports:
- name: github.com/julienschmidt/httprouter
version: 8c199fb6259ffc1af525cc3ad52ee60ba8359669
diff --git a/glide.yaml b/glide.yaml
index 53fa473..17be965 100644
--- a/glide.yaml
+++ b/glide.yaml
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-package: github.com/30x/go-scaffold
+package: github.com/apid/goscaffold
import:
- package: github.com/SermoDigital/jose
subpackages:
diff --git a/scaffold_test.go b/scaffold_test.go
index 516b4fc..1fe0161 100644
--- a/scaffold_test.go
+++ b/scaffold_test.go
@@ -36,8 +36,8 @@
)
const (
- validJWTSigner = "https://raw.githubusercontent.com/30x/goscaffold/master/testkeys/jwtcert.json"
- invalidJWTSigner = "https://raw.githubusercontent.com/30x/goscaffold/master/testkeys/notfound.json"
+ validJWTSigner = "https://raw.githubusercontent.com/apid/goscaffold/master/testkeys/jwtcert.json"
+ invalidJWTSigner = "https://raw.githubusercontent.com/apid/goscaffold/master/testkeys/notfound.json"
)
var (
@@ -629,9 +629,9 @@
claims := jws.Claims{}
now := time.Now()
- claims.SetAudience("http://github.com/30x/goscaffold")
- claims.SetIssuer("http://github.com/30x/goscaffold")
- claims.SetSubject("http://github.com/30x/goscaffold")
+ claims.SetAudience("http://github.com/apid/goscaffold")
+ claims.SetIssuer("http://github.com/apid/goscaffold")
+ claims.SetSubject("http://github.com/apid/goscaffold")
claims.SetIssuedAt(now)
claims.SetNotBefore(now)
claims.SetExpiration(now.Add(time.Hour))