Skip to content

Commit

Permalink
Rename NeowayLabs to PeriscopeData
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Kuhnhausen committed Sep 13, 2018
1 parent 7e7b0fa commit 45c08a0
Show file tree
Hide file tree
Showing 23 changed files with 39 additions and 39 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Wabbit - Go AMQP Mocking Library

[![GoDoc](https://godoc.org/github.com/NeowayLabs/wabbit?status.svg)](https://godoc.org/github.com/NeowayLabs/wabbit)
[![Go Report Card](https://goreportcard.com/badge/github.com/NeowayLabs/wabbit)](https://goreportcard.com/report/github.com/NeowayLabs/wabbit)
[![GoDoc](https://godoc.org/github.com/PeriscopeData/wabbit?status.svg)](https://godoc.org/github.com/PeriscopeData/wabbit)
[![Go Report Card](https://goreportcard.com/badge/github.com/PeriscopeData/wabbit)](https://goreportcard.com/report/github.com/PeriscopeData/wabbit)

> Elmer Fudd: Shhh. Be vewy vewy quiet, I'm hunting wabbits
Expand Down Expand Up @@ -35,9 +35,9 @@ package main

import (
"testing"
"github.com/NeowayLabs/wabbit/amqptest"
"github.com/NeowayLabs/wabbit/amqptest/server"
"github.com/NeowayLabs/wabbit/amqp"
"github.com/PeriscopeData/wabbit/amqptest"
"github.com/PeriscopeData/wabbit/amqptest/server"
"github.com/PeriscopeData/wabbit/amqp"
)


Expand Down
4 changes: 2 additions & 2 deletions _examples/publisher/exchange.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"flag"
"log"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/amqp"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/amqp"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions _examples/simple-consumer/exchange.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"log"
"time"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/amqp"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/amqp"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions _examples/worker_queue/worker_queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"flag"
"log"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/amqp"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/amqp"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions amqp/channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package amqp
import (
"errors"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/utils"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/utils"
"github.com/streadway/amqp"
)

Expand Down
2 changes: 1 addition & 1 deletion amqp/delivery.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package amqp

import (
"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
"github.com/streadway/amqp"
)

Expand Down
4 changes: 2 additions & 2 deletions amqp/dial.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package amqp
import (
"time"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/utils"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/utils"
"github.com/streadway/amqp"
)

Expand Down
2 changes: 1 addition & 1 deletion amqp/dial_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
"github.com/fsouza/go-dockerclient"
"github.com/tiago4orion/conjure"
)
Expand Down
2 changes: 1 addition & 1 deletion amqp/publisher.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package amqp

import "github.com/NeowayLabs/wabbit"
import "github.com/PeriscopeData/wabbit"

type Publisher struct {
conn wabbit.Conn
Expand Down
6 changes: 3 additions & 3 deletions amqp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"testing"
"time"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/amqptest"
"github.com/NeowayLabs/wabbit/amqptest/server"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/amqptest"
"github.com/PeriscopeData/wabbit/amqptest/server"
)

func TestBasicUsage(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions amqptest/dial.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"sync"
"time"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/amqptest/server"
"github.com/NeowayLabs/wabbit/utils"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/amqptest/server"
"github.com/PeriscopeData/wabbit/utils"
"github.com/pborman/uuid"
)

Expand Down
4 changes: 2 additions & 2 deletions amqptest/dial_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"
"time"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/amqptest/server"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/amqptest/server"
"github.com/pborman/uuid"
)

Expand Down
2 changes: 1 addition & 1 deletion amqptest/publisher.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package amqptest

import "github.com/NeowayLabs/wabbit"
import "github.com/PeriscopeData/wabbit"

type Publisher struct {
channel wabbit.Publisher
Expand Down
4 changes: 2 additions & 2 deletions amqptest/server/channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"sync"
"sync/atomic"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/utils"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/utils"
"github.com/streadway/amqp"
)

Expand Down
2 changes: 1 addition & 1 deletion amqptest/server/delivery.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package server

import "github.com/NeowayLabs/wabbit"
import "github.com/PeriscopeData/wabbit"

type (
// Delivery is an interface to delivered messages
Expand Down
2 changes: 1 addition & 1 deletion amqptest/server/queue.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package server

import "github.com/NeowayLabs/wabbit"
import "github.com/PeriscopeData/wabbit"

const (
QueueMaxLen = 2 << 8
Expand Down
4 changes: 2 additions & 2 deletions amqptest/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"sync"

"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/utils"
"github.com/PeriscopeData/wabbit"
"github.com/PeriscopeData/wabbit/utils"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion amqptest/server/vhost.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package server
import (
"fmt"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
)

// VHost is a fake AMQP virtual host
Expand Down
2 changes: 1 addition & 1 deletion amqptest/server/vhost_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package server
import (
"testing"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
)

func TestVHostWithDefaults(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion utils/broadcast.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package utils
import (
"sync"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
)

const listenerSlots = 128
Expand Down
2 changes: 1 addition & 1 deletion utils/broadcast_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
)

func TestBroadcast(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion utils/opt.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package utils
import (
"fmt"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
"github.com/streadway/amqp"
)

Expand Down
2 changes: 1 addition & 1 deletion utils/opt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package utils
import (
"testing"

"github.com/NeowayLabs/wabbit"
"github.com/PeriscopeData/wabbit"
"github.com/streadway/amqp"
)

Expand Down

0 comments on commit 45c08a0

Please sign in to comment.