Merge pull request #87 from nats-io/travis

Travis and Repo Move
This commit is contained in:
Derek Collison
2015-06-19 12:43:38 -07:00
28 changed files with 43 additions and 43 deletions

View File

@@ -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

View File

@@ -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)
@@ -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

View File

@@ -1,7 +1,7 @@
package auth
import (
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
type Plain struct {

View File

@@ -1,7 +1,7 @@
package auth
import (
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
type Token struct {

View File

@@ -1,4 +1,4 @@
// Copyright 2012-2013 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.
package main
@@ -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() {

View File

@@ -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
@@ -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.

View File

@@ -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 (

View File

@@ -10,7 +10,7 @@ import (
"strconv"
"time"
"github.com/apcera/gnatsd/sublist"
"github.com/nats-io/gnatsd/sublist"
)
// Snapshot this

View File

@@ -11,7 +11,7 @@ import (
"testing"
"time"
"github.com/apcera/nats"
"github.com/nats-io/nats"
)
const CLIENT_PORT = 11224

View File

@@ -11,7 +11,7 @@ import (
"strings"
"time"
"github.com/apcera/gnatsd/conf"
"github.com/nats-io/gnatsd/conf"
)
// Options block for gnatsd server.

View File

@@ -7,7 +7,7 @@ import (
"testing"
"time"
"github.com/apcera/nats"
"github.com/nats-io/nats"
)
const PING_CLIENT_PORT = 11228

View File

@@ -9,7 +9,7 @@ import (
"testing"
"time"
"github.com/apcera/nats"
"github.com/nats-io/nats"
)
func TestRouteConfig(t *testing.T) {

View File

@@ -1,4 +1,4 @@
// Copyright 2012-2014 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.
package server
@@ -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

View File

@@ -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) {

View File

@@ -1,4 +1,4 @@
// Copyright 2013 Apcera Inc. All rights reserved.
// Copyright 2013-2015 Apcera Inc. All rights reserved.
package server

View File

@@ -1,4 +1,4 @@
// Copyright 2012 Apcera Inc. All rights reserved.
// Copyright 2012-2015 Apcera Inc. All rights reserved.
package server

View File

@@ -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

View File

@@ -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) {

View File

@@ -12,7 +12,7 @@ import (
"testing"
"time"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
const PERF_PORT = 8422

View File

@@ -10,7 +10,7 @@ import (
"testing"
"time"
"github.com/apcera/nats"
"github.com/nats-io/nats"
)
func TestServerRestartReSliceIssue(t *testing.T) {

View File

@@ -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) {

View File

@@ -11,7 +11,7 @@ import (
"testing"
"time"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
const MONITOR_PORT = 11422

View File

@@ -5,7 +5,7 @@ package test
import (
"testing"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
func runPedanticServer() *server.Server {

View File

@@ -7,7 +7,7 @@ import (
"testing"
"time"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
const (

View File

@@ -7,7 +7,7 @@ import (
"strconv"
"testing"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
func TestResolveRandomPort(t *testing.T) {

View File

@@ -6,7 +6,7 @@ import (
"testing"
"time"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
const PROTO_TEST_PORT = 9922

View File

@@ -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) {

View File

@@ -15,7 +15,7 @@ import (
"strings"
"time"
"github.com/apcera/gnatsd/server"
"github.com/nats-io/gnatsd/server"
)
const natsServerExe = "../gnatsd"