Skip to content

Commit

Permalink
Move to new buildpacks-community organization (#15)
Browse files Browse the repository at this point in the history
Distribute scafall as a buildpacks-community effort

Signed-off-by: Aidan Delaney <[email protected]>
  • Loading branch information
AidanDelaney authored Apr 21, 2023
1 parent 9c96e67 commit a9f2f4b
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# scafall

[![Build results](https://github.com/buildpacks/scafall/workflows/build/badge.svg)](https://github.com/buildpacks/scafall/actions)
[![Go Report Card](https://goreportcard.com/badge/github.com/buildpacks/scafall)](https://goreportcard.com/report/github.com/buildpacks/scafall)
[![codecov](https://codecov.io/gh/buildpacks/scafall/branch/main/graph/badge.svg)](https://codecov.io/gh/buildpacks/scafall)
[![GoDoc](https://godoc.org/github.com/buildpacks/scafall?status.svg)](https://godoc.org/github.com/buildpacks/scafall)
[![GitHub license](https://img.shields.io/github/license/buildpacks/scafall)](https://github.com/buildpacks/scafall/blob/main/LICENSE)
[![Build results](https://github.com/buildpacks-community/scafall/workflows/build/badge.svg)](https://github.com/buildpacks-community/scafall/actions)
[![Go Report Card](https://goreportcard.com/badge/github.com/buildpacks-community/scafall)](https://goreportcard.com/report/github.com/buildpacks-community/scafall)
[![codecov](https://codecov.io/gh/buildpacks-community/scafall/branch/main/graph/badge.svg)](https://codecov.io/gh/buildpacks-community/scafall)
[![GoDoc](https://godoc.org/github.com/buildpacks-community/scafall?status.svg)](https://godoc.org/github.com/buildpacks-community/scafall)
[![GitHub license](https://img.shields.io/github/license/buildpacks-community/scafall)](https://github.com/buildpacks-community/scafall/blob/main/LICENSE)
[![Slack](https://img.shields.io/badge/slack-join-ff69b4.svg?logo=slack)](https://slack.cncf.io/)
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/buildpacks/scafall)
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/buildpacks-community/scafall)


A project scaffolding tool inspired by [cookiecutter](https://github.com/cookiecutter/cookiecutter).
Expand All @@ -22,7 +22,7 @@ Scafall differs from some other Go scaffolding/templating tools as it passes thr
As a Go developer you can install `scafall` into your `GOBIN` directory.

```bash
$ go install github.com/buildpacks/scafall@latest
$ go install github.com/buildpacks-community/scafall@latest
```

The `scafall` CLI should now be available for use
Expand All @@ -49,7 +49,7 @@ package main
import (
"fmt"

scafall "github.com/buildpacks/scafall/pkg"
scafall "github.com/buildpacks-community/scafall/pkg"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

scafall "github.com/buildpacks/scafall/pkg"
scafall "github.com/buildpacks-community/scafall/pkg"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"github.com/spf13/cobra"

scafall "github.com/buildpacks/scafall/pkg"
scafall "github.com/buildpacks-community/scafall/pkg"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/buildpacks/scafall
module github.com/buildpacks-community/scafall

go 1.20

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

"github.com/buildpacks/scafall/cmd"
"github.com/buildpacks-community/scafall/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/collection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"testing"

"github.com/buildpacks/scafall/pkg/internal"
"github.com/buildpacks-community/scafall/pkg/internal"
"github.com/sclevine/spec"
h "github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/sclevine/spec"
h "github.com/stretchr/testify/assert"

"github.com/buildpacks/scafall/pkg/internal"
"github.com/buildpacks-community/scafall/pkg/internal"
)

func testCreate(t *testing.T, when spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/source_file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/sclevine/spec"
h "github.com/stretchr/testify/assert"

"github.com/buildpacks/scafall/pkg/internal"
"github.com/buildpacks-community/scafall/pkg/internal"
)

func testReplace(t *testing.T, when spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"testing"

"github.com/buildpacks/scafall/pkg/internal"
"github.com/buildpacks-community/scafall/pkg/internal"

"github.com/AlecAivazis/survey/v2"
"github.com/AlecAivazis/survey/v2/terminal"
Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/transform.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/gabriel-vasile/mimetype"
"github.com/pkg/errors"

"github.com/buildpacks/scafall/pkg/internal/util"
"github.com/buildpacks-community/scafall/pkg/internal/util"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/transform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/sclevine/spec"
h "github.com/stretchr/testify/assert"

"github.com/buildpacks/scafall/pkg/internal"
"github.com/buildpacks-community/scafall/pkg/internal"
)

func testApply(t *testing.T, when spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/scafall.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path/filepath"
"strings"

"github.com/buildpacks/scafall/pkg/internal"
"github.com/buildpacks-community/scafall/pkg/internal"

"github.com/AlecAivazis/survey/v2"
)
Expand Down
2 changes: 1 addition & 1 deletion test_integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/sclevine/spec"
h "github.com/stretchr/testify/assert"

scafall "github.com/buildpacks/scafall/pkg"
scafall "github.com/buildpacks-community/scafall/pkg"
)

func testIntegration(t *testing.T, when spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion test_system/system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/sclevine/spec"
h "github.com/stretchr/testify/assert"

scafall "github.com/buildpacks/scafall/pkg"
scafall "github.com/buildpacks-community/scafall/pkg"
)

// walk recursively descends path, calling walkFn
Expand Down

0 comments on commit a9f2f4b

Please sign in to comment.