Skip to content

Commit da26f64

Browse files
authored
Rename github org (#214)
1 parent 1923b6d commit da26f64

36 files changed

+50
-50
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ install:
1111
- go get -u github.com/onsi/ginkgo/ginkgo
1212
- go get -u github.com/onsi/gomega
1313
- go get -u golang.org/x/crypto/ssh
14-
- go get -u github.com/GoASTScanner/gas/cmd/gas/...
14+
- go get -u github.com/securego/gas/cmd/gas/...
1515
- go get -v -t ./...
1616
- export PATH=$PATH:$HOME/gopath/bin
1717

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
## GAS - Go AST Scanner
3+
## GAS - Go Application Security
44

55
Inspects source code for security problems by scanning the Go AST.
66

@@ -12,15 +12,15 @@ You may obtain a copy of the License [here](http://www.apache.org/licenses/LICEN
1212

1313
### Project status
1414

15-
[![Build Status](https://travis-ci.org/GoASTScanner/gas.svg?branch=master)](https://travis-ci.org/GoASTScanner/gas)
16-
[![GoDoc](https://godoc.org/github.com/GoASTScanner/gas?status.svg)](https://godoc.org/github.com/GoASTScanner/gas)
15+
[![Build Status](https://travis-ci.org/securego/gas.svg?branch=master)](https://travis-ci.org/securego/gas)
16+
[![GoDoc](https://godoc.org/github.com/securego/gas?status.svg)](https://godoc.org/github.com/securego/gas)
1717

1818
Gas is still in alpha and accepting feedback from early adopters. We do
1919
not consider it production ready at this time.
2020

2121
### Install
2222

23-
`$ go get github.com/GoASTScanner/gas/cmd/gas/...`
23+
`$ go get github.com/securego/gas/cmd/gas/...`
2424

2525
### Usage
2626

@@ -188,7 +188,7 @@ The configuration of TLS rule can be generated from [Mozilla's TLS ciphers recom
188188
First you need to install the generator tool:
189189

190190
```
191-
go get github.com/GoASTScanner/gas/cmd/tlsconfig/...
191+
go get github.com/securego/gas/cmd/tlsconfig/...
192192
```
193193

194194
You can invoke now the `go generate` in the root of the project:

analyzer_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import (
66
"os"
77
"strings"
88

9-
"github.com/GoASTScanner/gas"
10-
"github.com/GoASTScanner/gas/rules"
9+
"github.com/securego/gas"
10+
"github.com/securego/gas/rules"
1111

12-
"github.com/GoASTScanner/gas/testutils"
1312
. "github.com/onsi/ginkgo"
1413
. "github.com/onsi/gomega"
14+
"github.com/securego/gas/testutils"
1515
)
1616

1717
var _ = Describe("Analyzer", func() {

call_list_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package gas_test
33
import (
44
"go/ast"
55

6-
"github.com/GoASTScanner/gas"
7-
"github.com/GoASTScanner/gas/testutils"
86
. "github.com/onsi/ginkgo"
97
. "github.com/onsi/gomega"
8+
"github.com/securego/gas"
9+
"github.com/securego/gas/testutils"
1010
)
1111

1212
var _ = Describe("call list", func() {

cmd/gas/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ import (
2727
"sort"
2828
"strings"
2929

30-
"github.com/GoASTScanner/gas"
31-
"github.com/GoASTScanner/gas/output"
32-
"github.com/GoASTScanner/gas/rules"
3330
"github.com/kisielk/gotool"
31+
"github.com/securego/gas"
32+
"github.com/securego/gas/output"
33+
"github.com/securego/gas/rules"
3434
)
3535

3636
const (

cmd/gas/sort_issues.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"sort"
55

6-
"github.com/GoASTScanner/gas"
6+
"github.com/securego/gas"
77
)
88

99
type sortBySeverity []*gas.Issue

cmd/tlsconfig/header_template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ package {{.}}
88
import (
99
"go/ast"
1010
11-
"github.com/GoASTScanner/gas"
11+
"github.com/securego/gas"
1212
)
1313
`))

config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package gas_test
33
import (
44
"bytes"
55

6-
"github.com/GoASTScanner/gas"
76
. "github.com/onsi/ginkgo"
87
. "github.com/onsi/gomega"
8+
"github.com/securego/gas"
99
)
1010

1111
var _ = Describe("Configuration", func() {

issue_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package gas_test
33
import (
44
"go/ast"
55

6-
"github.com/GoASTScanner/gas"
7-
"github.com/GoASTScanner/gas/rules"
8-
"github.com/GoASTScanner/gas/testutils"
96
. "github.com/onsi/ginkgo"
107
. "github.com/onsi/gomega"
8+
"github.com/securego/gas"
9+
"github.com/securego/gas/rules"
10+
"github.com/securego/gas/testutils"
1111
)
1212

1313
var _ = Describe("Issue", func() {

output/formatter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"io"
2323
plainTemplate "text/template"
2424

25-
"github.com/GoASTScanner/gas"
25+
"github.com/securego/gas"
2626
"gopkg.in/yaml.v2"
2727
)
2828

0 commit comments

Comments
 (0)