Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: go

go:
- 1.2
- 1.3
- 1.3.3
- 1.4
- 1.4.1

after_script:
- FIXIT=$(go fmt ./...); if [ -n "${FIXIT}" ]; then FIXED=$(echo $FIXIT | wc -l); echo "gofmt - ${FIXED} file(s) not formatted correctly, please run gofmt to fix them:\n ${FIXIT} " && exit 1; fi
Expand Down
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,31 @@ Google group: https://groups.google.com/forum/#!forum/goamz-announcements

# GoAMZ

[![Build Status](https://travis-ci.org/crowdmob/goamz.png?branch=master)](https://travis-ci.org/crowdmob/goamz)
[![Build Status](https://travis-ci.org/AdRoll/goamz.png?branch=master)](https://travis-ci.org/AdRoll/goamz)

The _goamz_ package enables Go programs to interact with Amazon Web Services.

This is a fork of the version [developed within Canonical](https://wiki.ubuntu.com/goamz) with additional functionality and services from [a number of contributors](https://github.com/crowdmob/goamz/contributors)!
This is a fork of the version [developed within Canonical](https://wiki.ubuntu.com/goamz) with additional functionality and services from [a number of contributors](https://github.com/AdRoll/goamz/contributors)!

The API of AWS is very comprehensive, though, and goamz doesn't even scratch the surface of it. That said, it's fairly well tested, and is the foundation in which further calls can easily be integrated. We'll continue extending the API as necessary - Pull Requests are _very_ welcome!

The following packages are available at the moment:

```
github.com/crowdmob/goamz/aws
github.com/crowdmob/goamz/cloudwatch
github.com/crowdmob/goamz/dynamodb
github.com/crowdmob/goamz/ec2
github.com/crowdmob/goamz/elb
github.com/crowdmob/goamz/iam
github.com/crowdmob/goamz/kinesis
github.com/crowdmob/goamz/s3
github.com/crowdmob/goamz/sqs
github.com/crowdmob/goamz/sns

github.com/crowdmob/goamz/exp/mturk
github.com/crowdmob/goamz/exp/sdb
github.com/crowdmob/goamz/exp/ses
github.com/AdRoll/goamz/aws
github.com/AdRoll/goamz/cloudwatch
github.com/AdRoll/goamz/dynamodb
github.com/AdRoll/goamz/ec2
github.com/AdRoll/goamz/elb
github.com/AdRoll/goamz/iam
github.com/AdRoll/goamz/kinesis
github.com/AdRoll/goamz/s3
github.com/AdRoll/goamz/sqs
github.com/AdRoll/goamz/sns

github.com/AdRoll/goamz/exp/mturk
github.com/AdRoll/goamz/exp/sdb
github.com/AdRoll/goamz/exp/ses
```

Packages under `exp/` are still in an experimental or unfinished/unpolished state.
Expand All @@ -42,14 +42,14 @@ Packages under `exp/` are still in an experimental or unfinished/unpolished stat

The API documentation is currently available at:

[http://godoc.org/github.com/crowdmob/goamz](http://godoc.org/github.com/crowdmob/goamz)
[http://godoc.org/github.com/AdRoll/goamz](http://godoc.org/github.com/AdRoll/goamz)

## How to build and install goamz

Just use `go get` with any of the available packages. For example:

* `$ go get github.com/crowdmob/goamz/ec2`
* `$ go get github.com/crowdmob/goamz/s3`
* `$ go get github.com/AdRoll/goamz/ec2`
* `$ go get github.com/AdRoll/goamz/s3`

## Running tests

Expand All @@ -59,7 +59,7 @@ To run tests, first install gocheck with:

Then run go test as usual:

`$ go test github.com/crowdmob/goamz/...`
`$ go test github.com/AdRoll/goamz/...`

_Note:_ running all tests with the command `go test ./...` will currently fail as tests do not tear down their HTTP listeners.

Expand Down
2 changes: 1 addition & 1 deletion autoscaling/autoscaling.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package autoscaling
import (
"encoding/xml"
"fmt"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"log"
"net/http"
"net/http/httputil"
Expand Down
4 changes: 2 additions & 2 deletions autoscaling/autoscaling_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package autoscaling

import (
"github.com/crowdmob/goamz/autoscaling/astest"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/autoscaling/astest"
"github.com/AdRoll/goamz/aws"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion autoscaling/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"sort"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion aws/attempt_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aws_test

import (
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"gopkg.in/check.v1"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion aws/aws_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aws_test

import (
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"gopkg.in/check.v1"
"io/ioutil"
"os"
Expand Down
2 changes: 1 addition & 1 deletion aws/sign_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package aws_test

import (
"fmt"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"gopkg.in/check.v1"
"net/http"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion cloudfront/cloudfront.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"encoding/base64"
"encoding/json"
"fmt"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"net/url"
"strconv"
"strings"
Expand Down
10 changes: 5 additions & 5 deletions cloudwatch/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#GoLang AWS Cloudwatch

## Installation
Please refer to the project's main page at [https://github.com/crowdmob/goamz](https://github.com/crowdmob/goamz) for instructions about how to install.
Please refer to the project's main page at [https://github.com/AdRoll/goamz](https://github.com/AdRoll/goamz) for instructions about how to install.

## Available methods

Expand Down Expand Up @@ -30,8 +30,8 @@ import (
"fmt"
"time"
"os"
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/cloudwatch"
"github.com/AdRoll/goamz/aws"
"github.com/AdRoll/goamz/cloudwatch"
)

func test_get_metric_statistics() {
Expand Down Expand Up @@ -78,8 +78,8 @@ import (
"fmt"
"time"
"os"
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/cloudwatch"
"github.com/AdRoll/goamz/aws"
"github.com/AdRoll/goamz/cloudwatch"
)

func test_list_metrics() {
Expand Down
2 changes: 1 addition & 1 deletion cloudwatch/cloudwatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"encoding/xml"
"errors"
"fmt"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"github.com/feyeleanor/sets"
"strconv"
"time"
Expand Down
6 changes: 3 additions & 3 deletions cloudwatch/cloudwatch_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cloudwatch_test

import (
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/cloudwatch"
"github.com/crowdmob/goamz/testutil"
"github.com/AdRoll/goamz/aws"
"github.com/AdRoll/goamz/cloudwatch"
"github.com/AdRoll/goamz/testutil"
"gopkg.in/check.v1"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion dynamodb/dynamo_query_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package dynamodb
import (
"encoding/json"
"errors"
"github.com/crowdmob/goamz/dynamodb/dynamizer"
"github.com/AdRoll/goamz/dynamodb/dynamizer"
)

type DynamoQuery struct {
Expand Down
4 changes: 2 additions & 2 deletions dynamodb/dynamo_query_builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package dynamodb
import (
"bytes"
"encoding/json"
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/dynamodb/dynamizer"
"github.com/AdRoll/goamz/aws"
"github.com/AdRoll/goamz/dynamodb/dynamizer"
"reflect"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion dynamodb/dynamodb.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
)

type Server struct {
Expand Down
2 changes: 1 addition & 1 deletion dynamodb/dynamodb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dynamodb

import (
"flag"
"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
"gopkg.in/check.v1"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion dynamodb/item.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/AdRoll/goamz/dynamodb/dynamizer"
simplejson "github.com/bitly/go-simplejson"
"github.com/crowdmob/goamz/dynamodb/dynamizer"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion dynamodb/query_builder_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package dynamodb

import (
"github.com/AdRoll/goamz/aws"
simplejson "github.com/bitly/go-simplejson"
"github.com/crowdmob/goamz/aws"
"gopkg.in/check.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion dynamodb/retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/crowdmob/goamz/aws"
"github.com/AdRoll/goamz/aws"
)

type RetrySuite struct {
Expand Down
Loading