Skip to content

Commit

Permalink
Merge pull request #87 from nats-io/travis
Browse files Browse the repository at this point in the history
Travis and Repo Move
  • Loading branch information
derekcollison committed Jun 19, 2015
2 parents 48c5bdf + 96bab33 commit 2797089
Show file tree
Hide file tree
Showing 28 changed files with 43 additions and 43 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -2,9 +2,9 @@ language: go
go:
- 1.4
install:
- DST=~/gopath/src/github.com/apcera
- DST=~/gopath/src/github.com/nats-io
- mkdir -p "$DST"
- git clone --depth=1 --quiet https://github.com/apcera/nats.git "$DST"/nats
- git clone --depth=1 --quiet https://github.com/nats-io/nats.git "$DST"/nats
- go get golang.org/x/tools/cmd/vet
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
Expand Down
12 changes: 6 additions & 6 deletions README.md
@@ -1,8 +1,8 @@
# gnatsd
[![License MIT](https://img.shields.io/npm/l/express.svg)](http://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.org/apcera/gnatsd.svg?branch=master)](http://travis-ci.org/apcera/gnatsd)
[![Current Release](http://img.shields.io/badge/release-v0.6.0-1eb0fc.svg)](https://github.com/apcera/gnatsd/releases/tag/v0.6.0)
[![Coverage Status](https://img.shields.io/coveralls/apcera/gnatsd.svg)](https://coveralls.io/r/apcera/gnatsd?branch=master)
[![Build Status](https://travis-ci.org/nats-io/gnatsd.svg?branch=master)](http://travis-ci.org/nats-io/gnatsd)
[![Current Release](http://img.shields.io/badge/release-v0.6.0-1eb0fc.svg)](https://github.com/nats-io/gnatsd/releases/tag/v0.6.0)
[![Coverage Status](https://img.shields.io/coveralls/nats-io/gnatsd.svg)](https://coveralls.io/r/nats-io/gnatsd?branch=master)

A High Performance [NATS](https://nats.io) Server written in [Go.](http://golang.org)

Expand Down Expand Up @@ -109,11 +109,11 @@ presentations, references and more.
## Client libraries

There are several client language bindings for NATS.
- [Go](https://github.com/apcera/nats)
- [Go](https://github.com/nats-io/nats)
- [Java](https://github.com/tyagihas/java_nats)
- [Java - Spring](https://github.com/mheath/jnats)
- [Node.js](https://github.com/derekcollison/node_nats)
- [Ruby](https://github.com/derekcollison/nats)
- [Node.js](https://github.com/nats-io/node-nats)
- [Ruby](https://github.com/nats-io/ruby-nats)


## License
Expand Down
2 changes: 1 addition & 1 deletion auth/plain.go
@@ -1,7 +1,7 @@
package auth

import (
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

type Plain struct {
Expand Down
2 changes: 1 addition & 1 deletion auth/token.go
@@ -1,7 +1,7 @@
package auth

import (
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

type Token struct {
Expand Down
8 changes: 4 additions & 4 deletions gnatsd.go
@@ -1,4 +1,4 @@
// Copyright 2012-2013 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.

package main

Expand All @@ -7,9 +7,9 @@ import (
"os"
"strings"

"github.com/apcera/gnatsd/auth"
"github.com/apcera/gnatsd/logger"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/auth"
"github.com/nats-io/gnatsd/logger"
"github.com/nats-io/gnatsd/server"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions hashmap/hashmap.go
@@ -1,4 +1,4 @@
// Copyright 2012-2013 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.

// HashMap defines a high performance hashmap based on
// fast hashing and fast key comparison. Simple chaining
Expand All @@ -11,7 +11,7 @@ import (
"errors"
"unsafe"

"github.com/apcera/gnatsd/hash"
"github.com/nats-io/gnatsd/hash"
)

// HashMap stores Entry items using a given Hash function.
Expand Down
4 changes: 2 additions & 2 deletions server/client.go
Expand Up @@ -12,8 +12,8 @@ import (
"sync/atomic"
"time"

"github.com/apcera/gnatsd/hashmap"
"github.com/apcera/gnatsd/sublist"
"github.com/nats-io/gnatsd/hashmap"
"github.com/nats-io/gnatsd/sublist"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion server/monitor.go
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"time"

"github.com/apcera/gnatsd/sublist"
"github.com/nats-io/gnatsd/sublist"
)

// Snapshot this
Expand Down
2 changes: 1 addition & 1 deletion server/monitor_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/apcera/nats"
"github.com/nats-io/nats"
)

const CLIENT_PORT = 11224
Expand Down
2 changes: 1 addition & 1 deletion server/opts.go
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"time"

"github.com/apcera/gnatsd/conf"
"github.com/nats-io/gnatsd/conf"
)

// Options block for gnatsd server.
Expand Down
2 changes: 1 addition & 1 deletion server/ping_test.go
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/apcera/nats"
"github.com/nats-io/nats"
)

const PING_CLIENT_PORT = 11228
Expand Down
2 changes: 1 addition & 1 deletion server/routes_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/apcera/nats"
"github.com/nats-io/nats"
)

func TestRouteConfig(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions server/server.go
@@ -1,4 +1,4 @@
// Copyright 2012-2014 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.

package server

Expand All @@ -17,7 +17,7 @@ import (
// Allow dynamic profiling.
_ "net/http/pprof"

"github.com/apcera/gnatsd/sublist"
"github.com/nats-io/gnatsd/sublist"
)

// Info is the information sent to clients to help them understand information
Expand Down
4 changes: 2 additions & 2 deletions server/split_test.go
Expand Up @@ -7,8 +7,8 @@ import (
"net"
"testing"

"github.com/apcera/gnatsd/hashmap"
"github.com/apcera/gnatsd/sublist"
"github.com/nats-io/gnatsd/hashmap"
"github.com/nats-io/gnatsd/sublist"
)

func TestSplitBufferSubOp(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion server/usage.go
@@ -1,4 +1,4 @@
// Copyright 2013 Apcera Inc. All rights reserved.
// Copyright 2013-2015 Apcera Inc. All rights reserved.

package server

Expand Down
2 changes: 1 addition & 1 deletion server/util.go
@@ -1,4 +1,4 @@
// Copyright 2012 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.

package server

Expand Down
4 changes: 2 additions & 2 deletions sublist/sublist.go
Expand Up @@ -11,8 +11,8 @@ import (
"sync/atomic"
"time"

"github.com/apcera/gnatsd/hash"
"github.com/apcera/gnatsd/hashmap"
"github.com/nats-io/gnatsd/hash"
"github.com/nats-io/gnatsd/hashmap"
)

// A Sublist stores and efficiently retrieves subscriptions. It uses a
Expand Down
4 changes: 2 additions & 2 deletions test/auth_test.go
Expand Up @@ -9,8 +9,8 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/auth"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/auth"
"github.com/nats-io/gnatsd/server"
)

func doAuthConnect(t tLogger, c net.Conn, token, user, pass string) {
Expand Down
2 changes: 1 addition & 1 deletion test/bench_test.go
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

const PERF_PORT = 8422
Expand Down
2 changes: 1 addition & 1 deletion test/client_cluster_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
"time"

"github.com/apcera/nats"
"github.com/nats-io/nats"
)

func TestServerRestartReSliceIssue(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/cluster_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

func runServers(t *testing.T) (srvA, srvB *server.Server, optsA, optsB *server.Options) {
Expand Down
2 changes: 1 addition & 1 deletion test/monitor_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

const MONITOR_PORT = 11422
Expand Down
2 changes: 1 addition & 1 deletion test/pedantic_test.go
Expand Up @@ -5,7 +5,7 @@ package test
import (
"testing"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

func runPedanticServer() *server.Server {
Expand Down
2 changes: 1 addition & 1 deletion test/ping_test.go
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion test/port_test.go
Expand Up @@ -7,7 +7,7 @@ import (
"strconv"
"testing"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

func TestResolveRandomPort(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/proto_test.go
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

const PROTO_TEST_PORT = 9922
Expand Down
2 changes: 1 addition & 1 deletion test/routes_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

func runRouteServer(t *testing.T) (*server.Server, *server.Options) {
Expand Down
2 changes: 1 addition & 1 deletion test/test.go
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
"time"

"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)

const natsServerExe = "../gnatsd"
Expand Down

0 comments on commit 2797089

Please sign in to comment.