Skip to content
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Jun 14, 2019
1 parent 10587cf commit 6ad9bf7
Show file tree
Hide file tree
Showing 4 changed files with 214 additions and 153 deletions.
7 changes: 5 additions & 2 deletions genny/plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"github.com/gobuffalo/plush"
"github.com/gobuffalo/plushgen"
"github.com/gobuffalo/release/genny/initgen"
"github.com/gobuffalo/release/genny/makefile"
"github.com/pkg/errors"
)

Expand Down Expand Up @@ -42,8 +43,10 @@ func New(opts *Options) (*genny.Group, error) {
ig, err := initgen.New(&initgen.Options{
Version: "v0.0.1",
VersionFile: filepath.Join(opts.ShortName, "version.go"),
MainFile: "main.go",
Root: opts.Root,
Options: &makefile.Options{
MainFile: "main.go",
Root: opts.Root,
},
})
if err != nil {
return gg, errors.WithStack(err)
Expand Down
30 changes: 18 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
module github.com/gobuffalo/buffalo-plugins

go 1.12

require (
github.com/BurntSushi/toml v0.3.1
github.com/gobuffalo/envy v1.6.15
github.com/Masterminds/semver v1.4.2 // indirect
github.com/gobuffalo/envy v1.7.0
github.com/gobuffalo/events v1.3.1
github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e
github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5
github.com/gobuffalo/licenser v0.0.0-20190329153211-c35c0a2813b2
github.com/gobuffalo/genny v0.2.0
github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211 // indirect
github.com/gobuffalo/gogen v0.2.0
github.com/gobuffalo/helpers v0.2.2 // indirect
github.com/gobuffalo/licenser v1.1.0
github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2
github.com/gobuffalo/meta v0.0.0-20190329152330-e161e8a93e3b
github.com/gobuffalo/packr/v2 v2.1.0
github.com/gobuffalo/plush v3.7.34+incompatible
github.com/gobuffalo/plushgen v0.0.0-20190329152458-0555238fe0d9
github.com/gobuffalo/release v1.4.0
github.com/karrick/godirwalk v1.8.0
github.com/gobuffalo/packr/v2 v2.4.0
github.com/gobuffalo/plush v3.8.2+incompatible
github.com/gobuffalo/plushgen v0.1.2
github.com/gobuffalo/release v1.7.0
github.com/gobuffalo/shoulders v1.0.4 // indirect
github.com/karrick/godirwalk v1.10.3
github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2
github.com/pkg/errors v0.8.1
github.com/sirupsen/logrus v1.4.1
github.com/spf13/cobra v0.0.3
github.com/spf13/viper v1.3.2
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/viper v1.4.0
github.com/stretchr/testify v1.3.0
)
Loading

0 comments on commit 6ad9bf7

Please sign in to comment.