From f8d58994c03be22e3431348da113f6b495ff4ef3 Mon Sep 17 00:00:00 2001 From: dmuriel Date: Thu, 2 Dec 2021 15:19:17 -0500 Subject: [PATCH] changing module name --- .github/CONTRIBUTING.md | 4 ++-- .github/ISSUE_TEMPLATE.md | 4 ++-- Dockerfile.build | 4 ++-- Dockerfile.slim.build | 4 ++-- Makefile | 2 +- README.md | 6 +++--- SHOULDERS.md | 4 ++-- binding/binding.go | 2 +- binding/file_test.go | 6 +++--- binding/request_binder.go | 2 +- buffalo.go | 2 +- context.go | 6 +++--- default_context.go | 8 ++++---- default_context_test.go | 2 +- errors.go | 6 +++--- errors_test.go | 2 +- flash_test.go | 2 +- handler.go | 2 +- internal/httpx/content_type.go | 2 +- internal/takeon/github.com/gobuffalo/syncx/README.md | 2 +- mail/README.md | 6 +++--- mail/mail.go | 4 ++-- mail/mail_test.go | 4 ++-- mail/message.go | 2 +- mail/smtp_sender.go | 2 +- mail/smtp_sender_test.go | 6 +++--- method_override.go | 2 +- method_override_test.go | 2 +- middleware_test.go | 2 +- options.go | 6 +++--- plugins.go | 2 +- plugins/plugcmds/available.go | 2 +- plugins/plugdeps/plugdeps_test.go | 8 ++++---- plugins/plugdeps/pop.go | 2 +- plugins/plugins.go | 4 ++-- render/auto_test.go | 4 ++-- render/string_test.go | 2 +- render/template.go | 4 ++-- request_logger.go | 2 +- route_info_test.go | 2 +- router_test.go | 2 +- server.go | 4 ++-- wrappers_test.go | 2 +- 43 files changed, 74 insertions(+), 74 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 71b66e869..d5390fd80 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,7 +4,7 @@ First, thank you so much for wanting to contribute! It means so much that you ca ## First time committing to a go Repo? -Support for go Modules was introduced in [Release v0.13.0-beta.1](https://github.com/gobuffalo/buffalo/releases/tag/v0.13.0-beta.1), and you can now use them to easily set up a development environment. The steps involve: +Support for go Modules was introduced in [Release v0.13.0-beta.1](https://github.com/dmuriel/buffalo/releases/tag/v0.13.0-beta.1), and you can now use them to easily set up a development environment. The steps involve: 1. Fork the repo 2. Clone the repo to any location in your work station @@ -13,7 +13,7 @@ Support for go Modules was introduced in [Release v0.13.0-beta.1](https://github ## How to contribute -1. Check [https://github.com/gobuffalo/buffalo/issues](https://github.com/gobuffalo/buffalo/issues) to make sure you're not working on a duplicate issue or PR. +1. Check [https://github.com/dmuriel/buffalo/issues](https://github.com/dmuriel/buffalo/issues) to make sure you're not working on a duplicate issue or PR. 2. If you want to implement a new feature that doesn't have an issue open, please open one and ask for feedback on the feature before spending a lot of time working on it. It's possible the feature has already been discussed, or it's out of scope, or some other reason that might later prevent a PR from being accepted. The [#buffalo](https://gobuffalo.io/docs/slack) channel on gophers.slack.com is a great place to seek this kind of guidance. 3. Write your feature/fix and make sure to include tests. Tests are an **absolute** requirement for any pull request. Please make sure to use the same testing style and libraries as the rest of the tests. 4. Make sure tests run when doing `go test ./...`. You may need to do `go get -t ./...` first to get the testing dependencies. diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 390c6a0c0..f6b77ae69 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -2,9 +2,9 @@ Hello! Thank you so much for your interest in Buffalo. The fact you care enough ## Prerequisites -* Check the documentation resources [gobuffalo.io](https://gobuffalo.io) and [godoc.org](https://godoc.org/github.com/gobuffalo/buffalo) to see if there are docs, examples, etc. that might solve your problem quicker. +* Check the documentation resources [gobuffalo.io](https://gobuffalo.io) and [godoc.org](https://godoc.org/github.com/dmuriel/buffalo) to see if there are docs, examples, etc. that might solve your problem quicker. * Make sure to provide as much information as possible (stack traces, error logs, code examples, screenshots...), so we can better help you. -* Read the [contributing guidelines](https://github.com/gobuffalo/buffalo/blob/master/.github/CONTRIBUTING.md). +* Read the [contributing guidelines](https://github.com/dmuriel/buffalo/blob/master/.github/CONTRIBUTING.md). * Support question are better asked in one of the following locations: * On [#buffalo](https://gobuffalo.io/docs/slack) Slack channel. * [Stack Overflow](https://stackoverflow.com/questions/tagged/buffalo) diff --git a/Dockerfile.build b/Dockerfile.build index 26d4c194e..0d56a9d57 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -8,7 +8,7 @@ RUN apt-get update \ && apt-get install -y -q build-essential sqlite3 libsqlite3-dev postgresql libpq-dev vim # Installing Node 12 -RUN curl -sL https://deb.nodesource.com/setup_12.x | bash +RUN curl -sL https://deb.nodesource.com/setup_12.x | bash RUN apt-get update && apt-get install nodejs # Installing Postgres @@ -30,7 +30,7 @@ RUN npm install -g --no-progress yarn \ RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0 # Installing buffalo binary RUN go install github.com/gobuffalo/cli/cmd/buffalo@latest -RUN go get github.com/gobuffalo/buffalo-pop/v2 +RUN go get github.com/dmuriel/buffalo-pop/v2 RUN mkdir /src WORKDIR /src diff --git a/Dockerfile.slim.build b/Dockerfile.slim.build index 6ff5226bc..96a903012 100644 --- a/Dockerfile.slim.build +++ b/Dockerfile.slim.build @@ -2,7 +2,7 @@ FROM golang:1.17-alpine EXPOSE 3000 -ENV GOPROXY=https://proxy.golang.org +ENV GOPROXY=https://proxy.golang.org RUN apk add --no-cache --upgrade apk-tools \ && apk add --no-cache bash curl openssl git build-base nodejs npm sqlite sqlite-dev mysql-client vim postgresql libpq postgresql-contrib libc6-compat @@ -18,7 +18,7 @@ RUN npm i -g --no-progress yarn \ # Installing buffalo binary RUN go install github.com/gobuffalo/cli/cmd/buffalo@latest -RUN go get github.com/gobuffalo/buffalo-pop/v2 +RUN go get github.com/dmuriel/buffalo-pop/v2 RUN mkdir /src WORKDIR /src diff --git a/Makefile b/Makefile index 388f671ec..5c1f79f4e 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ test: make tidy ci-deps: - $(GO_BIN) get github.com/gobuffalo/buffalo-pop + $(GO_BIN) get github.com/dmuriel/buffalo-pop $(GO_BIN) get -tags ${TAGS} -t -v ./... make tidy diff --git a/README.md b/README.md index aa320768c..2dcb76791 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@

-PkgGoDev -Tests Status -Go Report Card +PkgGoDev +Tests Status +Go Report Card Open Source Helpers

diff --git a/SHOULDERS.md b/SHOULDERS.md index afac02772..2c3827549 100644 --- a/SHOULDERS.md +++ b/SHOULDERS.md @@ -1,6 +1,6 @@ -# github.com/gobuffalo/buffalo Stands on the Shoulders of Giants +# github.com/dmuriel/buffalo Stands on the Shoulders of Giants -github.com/gobuffalo/buffalo does not try to reinvent the wheel! Instead, it uses the already great wheels developed by the Go community and puts them all together in the best way possible. Without these giants, this project would not be possible. Please make sure to check them out and thank them for all of their hard work. +github.com/dmuriel/buffalo does not try to reinvent the wheel! Instead, it uses the already great wheels developed by the Go community and puts them all together in the best way possible. Without these giants, this project would not be possible. Please make sure to check them out and thank them for all of their hard work. Thank you to the following **GIANTS**: diff --git a/binding/binding.go b/binding/binding.go index e78de96be..a76d64c82 100644 --- a/binding/binding.go +++ b/binding/binding.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/gobuffalo/buffalo/binding/decoders" + "github.com/dmuriel/buffalo/binding/decoders" "github.com/gobuffalo/nulls" "github.com/monoculum/formam" ) diff --git a/binding/file_test.go b/binding/file_test.go index ca66a5294..0da018ed6 100644 --- a/binding/file_test.go +++ b/binding/file_test.go @@ -10,9 +10,9 @@ import ( "path/filepath" "testing" - "github.com/gobuffalo/buffalo" - "github.com/gobuffalo/buffalo/binding" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo" + "github.com/dmuriel/buffalo/binding" + "github.com/dmuriel/buffalo/render" "github.com/stretchr/testify/require" ) diff --git a/binding/request_binder.go b/binding/request_binder.go index 4e5733d8d..cee1beab7 100644 --- a/binding/request_binder.go +++ b/binding/request_binder.go @@ -7,7 +7,7 @@ import ( "strings" "sync" - "github.com/gobuffalo/buffalo/internal/httpx" + "github.com/dmuriel/buffalo/internal/httpx" ) var ( diff --git a/buffalo.go b/buffalo.go index 15b546f77..2db316d4d 100644 --- a/buffalo.go +++ b/buffalo.go @@ -12,4 +12,4 @@ package buffalo // this import the package doesn't get vendored // by go mod vendor or by dep. this import fixes // this problem. -import _ "github.com/gobuffalo/buffalo/runtime" // Load the runtime package variables +import _ "github.com/dmuriel/buffalo/runtime" // Load the runtime package variables diff --git a/context.go b/context.go index 770f6b8cd..b1ceeab78 100644 --- a/context.go +++ b/context.go @@ -6,9 +6,9 @@ import ( "net/url" "sync" - "github.com/gobuffalo/buffalo/binding" - "github.com/gobuffalo/buffalo/internal/httpx" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/binding" + "github.com/dmuriel/buffalo/internal/httpx" + "github.com/dmuriel/buffalo/render" "github.com/gorilla/mux" ) diff --git a/default_context.go b/default_context.go index bbbe1fa14..22848947e 100644 --- a/default_context.go +++ b/default_context.go @@ -14,9 +14,9 @@ import ( "sync" "time" - "github.com/gobuffalo/buffalo/binding" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/markbates/errx" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/binding" + "github.com/dmuriel/buffalo/internal/takeon/github.com/markbates/errx" + "github.com/dmuriel/buffalo/render" ) // assert that DefaultContext is implementing Context @@ -155,7 +155,7 @@ func (d *DefaultContext) Render(status int, rr render.Renderer) error { // is dependent on the "Content-Type" for the request. If the type // is "application/json" it will use "json.NewDecoder". If the type // is "application/xml" it will use "xml.NewDecoder". See the -// github.com/gobuffalo/buffalo/binding package for more details. +// github.com/dmuriel/buffalo/binding package for more details. func (d *DefaultContext) Bind(value interface{}) error { return binding.Exec(d.Request(), value) } diff --git a/default_context_test.go b/default_context_test.go index 2823828cc..42f0b7198 100644 --- a/default_context_test.go +++ b/default_context_test.go @@ -8,7 +8,7 @@ import ( "sync" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/gobuffalo/logger" "github.com/stretchr/testify/require" diff --git a/errors.go b/errors.go index 7d0db0872..3d5ec934d 100644 --- a/errors.go +++ b/errors.go @@ -10,9 +10,9 @@ import ( "sort" "strings" - "github.com/gobuffalo/buffalo/internal/defaults" - "github.com/gobuffalo/buffalo/internal/httpx" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/markbates/errx" + "github.com/dmuriel/buffalo/internal/defaults" + "github.com/dmuriel/buffalo/internal/httpx" + "github.com/dmuriel/buffalo/internal/takeon/github.com/markbates/errx" "github.com/gobuffalo/events" "github.com/gobuffalo/plush/v4" ) diff --git a/errors_test.go b/errors_test.go index 7042ade25..e11cf695e 100644 --- a/errors_test.go +++ b/errors_test.go @@ -160,7 +160,7 @@ func Test_PanicHandler(t *testing.T) { {"/error", "error boom"}, } - const stack = `github.com/gobuffalo/buffalo.Test_PanicHandler` + const stack = `github.com/dmuriel/buffalo.Test_PanicHandler` w := httptest.New(app) for _, tt := range table { diff --git a/flash_test.go b/flash_test.go index 25f863f47..d17eec981 100644 --- a/flash_test.go +++ b/flash_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/stretchr/testify/require" ) diff --git a/handler.go b/handler.go index aff79dafd..bb23c3486 100644 --- a/handler.go +++ b/handler.go @@ -12,7 +12,7 @@ package buffalo } func (c Context) error { - return c.Redirect(http.StatusMovedPermanently, "http://github.com/gobuffalo/buffalo") + return c.Redirect(http.StatusMovedPermanently, "http://github.com/dmuriel/buffalo") } func (c Context) error { diff --git a/internal/httpx/content_type.go b/internal/httpx/content_type.go index d173350f5..694dddb52 100644 --- a/internal/httpx/content_type.go +++ b/internal/httpx/content_type.go @@ -4,7 +4,7 @@ import ( "net/http" "strings" - "github.com/gobuffalo/buffalo/internal/defaults" + "github.com/dmuriel/buffalo/internal/defaults" ) func ContentType(req *http.Request) string { diff --git a/internal/takeon/github.com/gobuffalo/syncx/README.md b/internal/takeon/github.com/gobuffalo/syncx/README.md index 0f0d02b20..38327dc19 100644 --- a/internal/takeon/github.com/gobuffalo/syncx/README.md +++ b/internal/takeon/github.com/gobuffalo/syncx/README.md @@ -1,4 +1,4 @@ -

+

GoDoc diff --git a/mail/README.md b/mail/README.md index e60ffbd83..28aab32c1 100644 --- a/mail/README.md +++ b/mail/README.md @@ -1,4 +1,4 @@ -# github.com/gobuffalo/buffalo/mail +# github.com/dmuriel/buffalo/mail This package is intended to allow easy Email sending with Buffalo, it allows you to define your custom `mail.Sender` for the provider you would like to use. @@ -18,11 +18,11 @@ import ( "log" "net/http" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/envy" "github.com/gobuffalo/packr/v2" "github.com/gobuffalo/plush" - "github.com/gobuffalo/buffalo/mail" + "github.com/dmuriel/buffalo/mail" "errors" "gitlab.com/wawandco/app/models" ) diff --git a/mail/mail.go b/mail/mail.go index 7bec65e8e..a0641d87d 100644 --- a/mail/mail.go +++ b/mail/mail.go @@ -4,8 +4,8 @@ import ( "context" "sync" - "github.com/gobuffalo/buffalo" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo" + "github.com/dmuriel/buffalo/render" ) // NewMessage builds a new message. diff --git a/mail/mail_test.go b/mail/mail_test.go index bab782312..789d3fde9 100644 --- a/mail/mail_test.go +++ b/mail/mail_test.go @@ -5,8 +5,8 @@ import ( "net/http" "testing" - "github.com/gobuffalo/buffalo" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/stretchr/testify/require" ) diff --git a/mail/message.go b/mail/message.go index eabf01cb0..7d964f799 100644 --- a/mail/message.go +++ b/mail/message.go @@ -7,7 +7,7 @@ import ( "bytes" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" ) //Message represents an Email message diff --git a/mail/smtp_sender.go b/mail/smtp_sender.go index 5ed7ebcb5..b2b7b73a1 100644 --- a/mail/smtp_sender.go +++ b/mail/smtp_sender.go @@ -5,7 +5,7 @@ import ( "io" "strconv" - gomail "github.com/gobuffalo/buffalo/mail/internal/mail" + gomail "github.com/dmuriel/buffalo/mail/internal/mail" ) //SMTPSender allows to send Emails by connecting to a SMTP server. diff --git a/mail/smtp_sender_test.go b/mail/smtp_sender_test.go index a2dde8466..f9b36835f 100644 --- a/mail/smtp_sender_test.go +++ b/mail/smtp_sender_test.go @@ -4,9 +4,9 @@ import ( "bytes" "testing" - "github.com/gobuffalo/buffalo/internal/fakesmtp" - "github.com/gobuffalo/buffalo/mail" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/internal/fakesmtp" + "github.com/dmuriel/buffalo/mail" + "github.com/dmuriel/buffalo/render" "github.com/stretchr/testify/require" ) diff --git a/method_override.go b/method_override.go index 2765156bb..ef0ec66cc 100644 --- a/method_override.go +++ b/method_override.go @@ -3,7 +3,7 @@ package buffalo import ( "net/http" - "github.com/gobuffalo/buffalo/internal/defaults" + "github.com/dmuriel/buffalo/internal/defaults" ) // MethodOverride is the default implementation for the diff --git a/method_override_test.go b/method_override_test.go index 95a21577a..694a01054 100644 --- a/method_override_test.go +++ b/method_override_test.go @@ -5,7 +5,7 @@ import ( "net/url" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/stretchr/testify/require" ) diff --git a/middleware_test.go b/middleware_test.go index abd7b0e4f..b2c9c1ce4 100644 --- a/middleware_test.go +++ b/middleware_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/stretchr/testify/require" ) diff --git a/options.go b/options.go index 9959d68fa..debf9c55a 100644 --- a/options.go +++ b/options.go @@ -6,9 +6,9 @@ import ( "net/http" "strings" + "github.com/dmuriel/buffalo/internal/defaults" + "github.com/dmuriel/buffalo/worker" "github.com/fatih/color" - "github.com/gobuffalo/buffalo/internal/defaults" - "github.com/gobuffalo/buffalo/worker" "github.com/gobuffalo/envy" "github.com/gobuffalo/logger" "github.com/gobuffalo/pop/v5" @@ -122,7 +122,7 @@ func optionsWithDefaults(opts Options) Options { if len(opts.LogLevel) > 0 { var err error - oncer.Deprecate(0, "github.com/gobuffalo/buffalo#Options.LogLevel", "Use github.com/gobuffalo/buffalo#Options.LogLvl instead.") + oncer.Deprecate(0, "github.com/dmuriel/buffalo#Options.LogLevel", "Use github.com/dmuriel/buffalo#Options.LogLvl instead.") opts.LogLvl, err = logger.ParseLevel(opts.LogLevel) if err != nil { opts.LogLvl = logger.DebugLevel diff --git a/plugins.go b/plugins.go index 5b9a97460..2b3bd1fb2 100644 --- a/plugins.go +++ b/plugins.go @@ -7,7 +7,7 @@ import ( "os/exec" "strings" - "github.com/gobuffalo/buffalo/plugins" + "github.com/dmuriel/buffalo/plugins" "github.com/gobuffalo/envy" "github.com/gobuffalo/events" "github.com/markbates/oncer" diff --git a/plugins/plugcmds/available.go b/plugins/plugcmds/available.go index 6fbfe523b..d9d4e1e1b 100644 --- a/plugins/plugcmds/available.go +++ b/plugins/plugcmds/available.go @@ -6,7 +6,7 @@ import ( "io" "os" - "github.com/gobuffalo/buffalo/plugins" + "github.com/dmuriel/buffalo/plugins" "github.com/gobuffalo/events" "github.com/spf13/cobra" ) diff --git a/plugins/plugdeps/plugdeps_test.go b/plugins/plugdeps/plugdeps_test.go index e4f777c03..b081e0e4f 100644 --- a/plugins/plugdeps/plugdeps_test.go +++ b/plugins/plugdeps/plugdeps_test.go @@ -5,14 +5,14 @@ import ( "path/filepath" "testing" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/markbates/errx" + "github.com/dmuriel/buffalo/internal/takeon/github.com/markbates/errx" "github.com/gobuffalo/meta" "github.com/stretchr/testify/require" ) var heroku = Plugin{ Binary: "buffalo-heroku", - GoGet: "github.com/gobuffalo/buffalo-heroku", + GoGet: "github.com/dmuriel/buffalo-heroku", Commands: []Command{ {Name: "deploy", Flags: []string{"-v"}}, }, @@ -64,7 +64,7 @@ const eToml = `[[plugin]] [[plugin]] binary = "buffalo-heroku" - go_get = "github.com/gobuffalo/buffalo-heroku" + go_get = "github.com/dmuriel/buffalo-heroku" tags = ["foo", "bar"] [[plugin.command]] @@ -73,5 +73,5 @@ const eToml = `[[plugin]] [[plugin]] binary = "buffalo-pop" - go_get = "github.com/gobuffalo/buffalo-pop/v2" + go_get = "github.com/dmuriel/buffalo-pop/v2" ` diff --git a/plugins/plugdeps/pop.go b/plugins/plugdeps/pop.go index 9dfcc897d..bc109c32b 100644 --- a/plugins/plugdeps/pop.go +++ b/plugins/plugdeps/pop.go @@ -2,5 +2,5 @@ package plugdeps var pop = Plugin{ Binary: "buffalo-pop", - GoGet: "github.com/gobuffalo/buffalo-pop/v2", + GoGet: "github.com/dmuriel/buffalo-pop/v2", } diff --git a/plugins/plugins.go b/plugins/plugins.go index 724475d4c..2ff95cbb9 100644 --- a/plugins/plugins.go +++ b/plugins/plugins.go @@ -10,8 +10,8 @@ import ( "strings" "time" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/markbates/errx" - "github.com/gobuffalo/buffalo/plugins/plugdeps" + "github.com/dmuriel/buffalo/internal/takeon/github.com/markbates/errx" + "github.com/dmuriel/buffalo/plugins/plugdeps" "github.com/gobuffalo/envy" "github.com/gobuffalo/meta" "github.com/karrick/godirwalk" diff --git a/render/auto_test.go b/render/auto_test.go index d1c2b6d50..2022a705d 100644 --- a/render/auto_test.go +++ b/render/auto_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/gobuffalo/buffalo" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/gobuffalo/packd" "github.com/stretchr/testify/require" diff --git a/render/string_test.go b/render/string_test.go index cae17ec2f..c8f0633f6 100644 --- a/render/string_test.go +++ b/render/string_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/stretchr/testify/require" ) diff --git a/render/template.go b/render/template.go index b67641d39..32fa0cc7a 100644 --- a/render/template.go +++ b/render/template.go @@ -9,8 +9,8 @@ import ( "sort" "strings" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/gobuffalo/syncx" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/markbates/errx" + "github.com/dmuriel/buffalo/internal/takeon/github.com/gobuffalo/syncx" + "github.com/dmuriel/buffalo/internal/takeon/github.com/markbates/errx" "github.com/gobuffalo/packd" "github.com/sirupsen/logrus" ) diff --git a/request_logger.go b/request_logger.go index 0ceaf786e..2dc341ceb 100644 --- a/request_logger.go +++ b/request_logger.go @@ -6,8 +6,8 @@ import ( "net/http" "time" + "github.com/dmuriel/buffalo/internal/httpx" humanize "github.com/dustin/go-humanize" - "github.com/gobuffalo/buffalo/internal/httpx" ) // RequestLogger can be be overridden to a user specified diff --git a/route_info_test.go b/route_info_test.go index 4475c3840..8a7d80152 100644 --- a/route_info_test.go +++ b/route_info_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/stretchr/testify/require" ) diff --git a/router_test.go b/router_test.go index b41a33893..25bb894b8 100644 --- a/router_test.go +++ b/router_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/envy" "github.com/gobuffalo/httptest" "github.com/gobuffalo/packd" diff --git a/server.go b/server.go index 03f768780..83875941b 100644 --- a/server.go +++ b/server.go @@ -7,8 +7,8 @@ import ( "strings" "syscall" - "github.com/gobuffalo/buffalo/internal/takeon/github.com/markbates/errx" - "github.com/gobuffalo/buffalo/servers" + "github.com/dmuriel/buffalo/internal/takeon/github.com/markbates/errx" + "github.com/dmuriel/buffalo/servers" "github.com/gobuffalo/events" "github.com/gobuffalo/packd" "github.com/markbates/refresh/refresh/web" diff --git a/wrappers_test.go b/wrappers_test.go index 44c26eadb..886bbb701 100644 --- a/wrappers_test.go +++ b/wrappers_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/gobuffalo/buffalo/render" + "github.com/dmuriel/buffalo/render" "github.com/gobuffalo/httptest" "github.com/stretchr/testify/require" )