Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

fixed go.mod and skipped tests for currently unsupported features #1224

Merged
merged 2 commits into from
Aug 13, 2018
Merged
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
166 changes: 0 additions & 166 deletions Gopkg.toml

This file was deleted.

6 changes: 6 additions & 0 deletions buffalo/cmd/new_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ func Test_NewCmd_ForbiddenAppName(t *testing.T) {
}

func Test_NewCmd_Nominal(t *testing.T) {
if envy.Get("GO111MODULE", "off") == "on" {
t.Skip("CURRENTLY NOT SUPPORTED")
}
r := require.New(t)
c := RootCmd

Expand Down Expand Up @@ -82,6 +85,9 @@ func Test_NewCmd_Nominal(t *testing.T) {
}

func Test_NewCmd_API(t *testing.T) {
if envy.Get("GO111MODULE", "off") == "on" {
t.Skip("CURRENTLY NOT SUPPORTED")
}
r := require.New(t)
c := RootCmd

Expand Down
46 changes: 46 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
module github.com/gobuffalo/buffalo

require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/dustin/go-humanize v0.0.0-20180713052910-9f541cc9db5d
github.com/fatih/color v1.7.0
github.com/gobuffalo/buffalo-plugins v0.0.0-20180806175557-74213b1cee9f
github.com/gobuffalo/envy v1.6.3
github.com/gobuffalo/github_flavored_markdown v1.0.0
github.com/gobuffalo/makr v1.1.1
github.com/gobuffalo/mw-basicauth v0.0.0-20180802152105-15d67c4ac152
github.com/gobuffalo/mw-contenttype v0.0.0-20180802152300-74f5a47f4d56
github.com/gobuffalo/mw-csrf v0.0.0-20180802151833-446ff26e108b
github.com/gobuffalo/mw-forcessl v0.0.0-20180802152810-73921ae7a130
github.com/gobuffalo/mw-i18n v0.0.0-20180802152014-e3060b7e13d6
github.com/gobuffalo/mw-paramlogger v0.0.0-20180807082017-6b90b69a724a
github.com/gobuffalo/mw-poptx v0.0.0-20180802152651-f4c128247c7a
github.com/gobuffalo/mw-tokenauth v0.0.0-20180802152212-d09751da96e0
github.com/gobuffalo/packr v1.13.1
github.com/gobuffalo/plush v0.0.0-20180810170812-274552812256
github.com/gobuffalo/pop v0.0.0-20180810203029-9f8bf0c11920
github.com/gobuffalo/shoulders v0.0.0-20180810153810-ae902c4e78ff
github.com/gobuffalo/tags v2.0.6+incompatible
github.com/gobuffalo/x v0.0.0-20180117215853-11ca13c05abd
github.com/gorilla/context v1.1.1
github.com/gorilla/mux v1.6.2
github.com/gorilla/sessions v1.1.1
github.com/markbates/deplist v1.0.2
github.com/markbates/going v1.0.1
github.com/markbates/grift v1.0.1
github.com/markbates/inflect v1.0.0
github.com/markbates/refresh v1.4.1
github.com/markbates/sigtx v1.0.0
github.com/monoculum/formam v0.0.0-20170814190438-f25191ae7744
github.com/nicksnyder/go-i18n v1.10.0 // indirect
github.com/pkg/errors v0.8.0
github.com/sirupsen/logrus v1.0.6
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.2
github.com/spf13/viper v1.1.0
github.com/unrolled/secure v0.0.0-20180618144512-8287f3899c8e // indirect
golang.org/x/crypto v0.0.0-20180808211826-de0752318171
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/mail.v2 v2.0.0-20180731213649-a0242b2233b4
)
Loading