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

Use github.com/gobuffalo/helpers #1652

Merged
merged 19 commits into from
May 26, 2019
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ GO_BIN ?= go

install: deps
make tidy
packr2
$(GO_BIN) install -tags ${TAGS} -v ./buffalo
make tidy

tidy:
packr2
ifeq ($(GO111MODULE),on)
$(GO_BIN) mod tidy
else
Expand Down
4 changes: 4 additions & 0 deletions SHOULDERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ Thank you to the following **GIANTS**:

* [github.com/gobuffalo/gogen](https://godoc.org/github.com/gobuffalo/gogen)

* [github.com/gobuffalo/helpers](https://godoc.org/github.com/gobuffalo/helpers)

* [github.com/gobuffalo/httptest](https://godoc.org/github.com/gobuffalo/httptest)

* [github.com/gobuffalo/logger](https://godoc.org/github.com/gobuffalo/logger)
Expand All @@ -57,6 +59,8 @@ Thank you to the following **GIANTS**:

* [github.com/gobuffalo/pop](https://godoc.org/github.com/gobuffalo/pop)

* [github.com/gobuffalo/syncx](https://godoc.org/github.com/gobuffalo/syncx)

* [github.com/gobuffalo/tags](https://godoc.org/github.com/gobuffalo/tags)

* [github.com/gobuffalo/x](https://godoc.org/github.com/gobuffalo/x)
Expand Down
8 changes: 0 additions & 8 deletions genny/assets/webpack/webpack-packr.go

This file was deleted.

8 changes: 0 additions & 8 deletions genny/build/build-packr.go

This file was deleted.

7 changes: 4 additions & 3 deletions genny/newapp/web/templates/actions/render.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ func init() {

// Add template helpers here:
Helpers: render.Helpers{
// uncomment for non-Bootstrap form helpers:
// "form": plush.FormHelper,
// "form_for": plush.FormForHelper,
// for non-bootstrap form helpers uncomment the lines
// below and import "github.com/gobuffalo/helpers/forms"
// forms.FormKey: forms.Form,
// forms.FormForKey: forms.FormFor,
},
})
}
10 changes: 5 additions & 5 deletions genny/newapp/web/templates/templates/index.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
<%= r.Method %>
</td>
<td>
<%= if (r.Method != "GET" || r.Path ~= "{") { %>
<%= r.Path %>
<% } else { %>
<a href="<%= r.Path %>"><%= r.Path %></a>
<% } %>
<%= if (r.Method != "GET" || r.Path ~= "{") {
return r.Path
} else {
return linkTo(r.Path)
} %>
</td>
<td>
<%= r.PathName %>
Expand Down
2 changes: 1 addition & 1 deletion genny/newapp/web/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func New(opts *Options) (*genny.Group, error) {

t := gogen.TemplateTransformer(data, helpers)
g.Transformer(t)
g.Box(packr.New("buffalo:genny:newapp:web", "../web/templates"))
g.Box(packr.New("github.com/gobuffalo/buffalo/genny/newapp/web", "../web/templates"))

gg.Add(g)

Expand Down
4 changes: 2 additions & 2 deletions genny/resource/_fixtures/default/templates/widgets/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Edit Widget</h1>
</div>

<%= form_for(widget, {action: widgetPath({ widget_id: widget.ID }), method: "PUT"}) { %>
<%= formFor(widget, {action: widgetPath({ widget_id: widget.ID }), method: "PUT"}) { %>
<%= partial("widgets/form.html") %>
<a href="<%= widgetPath({ widget_id: widget.ID }) %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
<%= linkTo(widgetPath({ widget_id: widget.ID }), {class: "btn btn-warning", "data-confirm": "Are you sure?", body: "Cancel"}) %>
<% } %>
12 changes: 8 additions & 4 deletions genny/resource/_fixtures/default/templates/widgets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
<h1>Widgets</h1>
</div>
<ul class="list-unstyled list-inline">
<li><a href="<%= newWidgetsPath() %>" class="btn btn-primary">Create New Widget</a></li>
<li>
<%= linkTo(newWidgetsPath(), {class: "btn btn-primary"}) { %>
Create New Widget
<% } %>
</li>
</ul>

<table class="table table-striped">
Expand All @@ -16,9 +20,9 @@ <h1>Widgets</h1>
<td><%= widget.Name %></td>
<td>
<div class="pull-right">
<a href="<%= widgetPath({ widget_id: widget.ID }) %>" class="btn btn-info">View</a>
<a href="<%= editWidgetPath({ widget_id: widget.ID }) %>" class="btn btn-warning">Edit</a>
<a href="<%= widgetPath({ widget_id: widget.ID }) %>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
<%= linkTo(widgetPath({ widget_id: widget.ID }), {class: "btn btn-info", body: "View"}) %>
<%= linkTo(editWidgetPath({ widget_id: widget.ID }), {class: "btn btn-warning", body: "Edit"}) %>
<%= linkTo(widgetPath({ widget_id: widget.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
</div>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions genny/resource/_fixtures/default/templates/widgets/new.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>New Widget</h1>
</div>

<%= form_for(widget, {action: widgetsPath(), method: "POST"}) { %>
<%= formFor(widget, {action: widgetsPath(), method: "POST"}) { %>
<%= partial("widgets/form.html") %>
<a href="<%= widgetsPath() %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
<%= linkTo(widgetsPath(), {class: "btn btn-warning", "data-confirm": "Are you sure?", body: "Cancel"}) %>
<% } %>
14 changes: 11 additions & 3 deletions genny/resource/_fixtures/default/templates/widgets/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@ <h1>Widget#Show</h1>
</div>

<ul class="list-unstyled list-inline">
<li class="list-inline-item"><a href="<%= widgetsPath() %>" class="btn btn-info">Back to all Widgets</a></li>
<li class="list-inline-item"><a href="<%= editWidgetPath({ widget_id: widget.ID })%>" class="btn btn-warning">Edit</a></li>
<li class="list-inline-item"><a href="<%= widgetPath({ widget_id: widget.ID })%>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
<li class="list-inline-item">
<%= linkTo(widgetsPath(), {class: "btn btn-info"}) { %>
Back to all Widgets
<% } %>
</li>
<li class="list-inline-item">
<%= linkTo(editWidgetPath({ widget_id: widget.ID }), {class: "btn btn-warning", body: "Edit"}) %>
</li>
<li class="list-inline-item">
<%= linkTo(widgetPath({ widget_id: widget.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
</li>
</ul>

<p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Edit Widget</h1>
</div>

<%= form_for(widget, {action: adminWidgetPath({ admin_widget_id: widget.ID }), method: "PUT"}) { %>
<%= formFor(widget, {action: adminWidgetPath({ admin_widget_id: widget.ID }), method: "PUT"}) { %>
<%= partial("admin/widgets/form.html") %>
<a href="<%= adminWidgetPath({ admin_widget_id: widget.ID }) %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
<%= linkTo(adminWidgetPath({ admin_widget_id: widget.ID }), {class: "btn btn-warning", "data-confirm": "Are you sure?", body: "Cancel"}) %>
<% } %>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
<h1>Widgets</h1>
</div>
<ul class="list-unstyled list-inline">
<li><a href="<%= newAdminWidgetsPath() %>" class="btn btn-primary">Create New Widget</a></li>
<li>
<%= linkTo(newAdminWidgetsPath(), {class: "btn btn-primary"}) { %>
Create New Widget
<% } %>
</li>
</ul>

<table class="table table-striped">
Expand All @@ -16,9 +20,9 @@ <h1>Widgets</h1>
<td><%= widget.Name %></td>
<td>
<div class="pull-right">
<a href="<%= adminWidgetPath({ admin_widget_id: widget.ID }) %>" class="btn btn-info">View</a>
<a href="<%= editAdminWidgetPath({ admin_widget_id: widget.ID }) %>" class="btn btn-warning">Edit</a>
<a href="<%= adminWidgetPath({ admin_widget_id: widget.ID }) %>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
<%= linkTo(adminWidgetPath({ admin_widget_id: widget.ID }), {class: "btn btn-info", body: "View"}) %>
<%= linkTo(editAdminWidgetPath({ admin_widget_id: widget.ID }), {class: "btn btn-warning", body: "Edit"}) %>
<%= linkTo(adminWidgetPath({ admin_widget_id: widget.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
</div>
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>New Widget</h1>
</div>

<%= form_for(widget, {action: adminWidgetsPath(), method: "POST"}) { %>
<%= formFor(widget, {action: adminWidgetsPath(), method: "POST"}) { %>
<%= partial("admin/widgets/form.html") %>
<a href="<%= adminWidgetsPath() %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
<%= linkTo(adminWidgetsPath(), {class: "btn btn-warning", "data-confirm": "Are you sure?", body: "Cancel"}) %>
<% } %>
14 changes: 11 additions & 3 deletions genny/resource/_fixtures/nested/templates/admin/widgets/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@ <h1>Widget#Show</h1>
</div>

<ul class="list-unstyled list-inline">
<li class="list-inline-item"><a href="<%= adminWidgetsPath() %>" class="btn btn-info">Back to all Widgets</a></li>
<li class="list-inline-item"><a href="<%= editAdminWidgetPath({ admin_widget_id: widget.ID })%>" class="btn btn-warning">Edit</a></li>
<li class="list-inline-item"><a href="<%= adminWidgetPath({ admin_widget_id: widget.ID })%>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
<li class="list-inline-item">
<%= linkTo(adminWidgetsPath(), {class: "btn btn-info"}) { %>
Back to all Widgets
<% } %>
</li>
<li class="list-inline-item">
<%= linkTo(editAdminWidgetPath({ admin_widget_id: widget.ID }), {class: "btn btn-warning", body: "Edit"}) %>
</li>
<li class="list-inline-item">
<%= linkTo(adminWidgetPath({ admin_widget_id: widget.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
</li>
</ul>

<p>
Expand Down
2 changes: 1 addition & 1 deletion genny/resource/resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func Test_New(t *testing.T) {
r.NoError(err)
}

exp := packr.New(tt.Name, filepath.Join("_fixtures", tt.Name))
exp := packr.Folder(filepath.Join("_fixtures", tt.Name))
gentest.CompareFiles(exp.List(), res.Files)

for _, n := range exp.List() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Edit {{.opts.Model.Proper}}</h1>
</div>

<%= form_for({{.opts.Model.VarCaseSingle}}, {action: {{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), method: "PUT"}) { %>
<%= formFor({{.opts.Model.VarCaseSingle}}, {action: {{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), method: "PUT"}) { %>
<%= partial("{{.folder}}/form.html") %>
<a href="<%= {{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }) %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
<%= linkTo({{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), {class: "btn btn-warning", "data-confirm": "Are you sure?", body: "Cancel"}) %>
<% } %>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
<h1>{{.opts.Model.Group}}</h1>
</div>
<ul class="list-unstyled list-inline">
<li><a href="<%= new{{.opts.Name.Resource}}Path() %>" class="btn btn-primary">Create New {{.opts.Model.Proper}}</a></li>
<li>
<%= linkTo(new{{.opts.Name.Resource}}Path(), {class: "btn btn-primary"}) { %>
Create New {{.opts.Model.Proper}}
<% } %>
</li>
</ul>

<table class="table table-striped">
Expand All @@ -24,9 +28,9 @@
{{ end -}}
<td>
<div class="pull-right">
<a href="<%= {{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }) %>" class="btn btn-info">View</a>
<a href="<%= edit{{.opts.Name.Proper}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }) %>" class="btn btn-warning">Edit</a>
<a href="<%= {{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }) %>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
<%= linkTo({{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), {class: "btn btn-info", body: "View"}) %>
<%= linkTo(edit{{.opts.Name.Proper}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), {class: "btn btn-warning", body: "Edit"}) %>
<%= linkTo({{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
</div>
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>New {{.opts.Model.Proper}}</h1>
</div>

<%= form_for({{.opts.Model.VarCaseSingle}}, {action: {{.opts.Name.VarCasePlural}}Path(), method: "POST"}) { %>
<%= formFor({{.opts.Model.VarCaseSingle}}, {action: {{.opts.Name.VarCasePlural}}Path(), method: "POST"}) { %>
<%= partial("{{.folder}}/form.html") %>
<a href="<%= {{.opts.Name.VarCasePlural}}Path() %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
<%= linkTo({{.opts.Name.VarCasePlural}}Path(), {class: "btn btn-warning", "data-confirm": "Are you sure?", body: "Cancel"}) %>
<% } %>
14 changes: 11 additions & 3 deletions genny/resource/templates/core/templates/folder-name/show.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@
</div>

<ul class="list-unstyled list-inline">
<li class="list-inline-item"><a href="<%= {{.opts.Name.VarCasePlural}}Path() %>" class="btn btn-info">Back to all {{.opts.Model.Group}}</a></li>
<li class="list-inline-item"><a href="<%= edit{{.opts.Name.Proper}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID })%>" class="btn btn-warning">Edit</a></li>
<li class="list-inline-item"><a href="<%= {{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID })%>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
<li class="list-inline-item">
<%= linkTo({{.opts.Name.VarCasePlural}}Path(), {class: "btn btn-info"}) { %>
Back to all {{.opts.Model.Group}}
<% } %>
</li>
<li class="list-inline-item">
<%= linkTo(edit{{.opts.Name.Proper}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), {class: "btn btn-warning", body: "Edit"}) %>
</li>
<li class="list-inline-item">
<%= linkTo({{.opts.Name.VarCaseSingle}}Path({ {{.opts.Name.ParamID}}: {{.opts.Model.VarCaseSingle}}.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
</li>
</ul>

{{ range $p := .opts.Attrs -}}
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ require (
github.com/gobuffalo/genny v0.1.1
github.com/gobuffalo/github_flavored_markdown v1.0.7
github.com/gobuffalo/gogen v0.1.1
github.com/gobuffalo/helpers v0.0.0-20190506214229-8e6f634af7c3
github.com/gobuffalo/httptest v1.2.0
github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2
github.com/gobuffalo/meta v0.0.0-20190329152330-e161e8a93e3b
Expand All @@ -27,6 +28,7 @@ require (
github.com/gobuffalo/plush v3.8.2+incompatible
github.com/gobuffalo/plushgen v0.1.0
github.com/gobuffalo/pop v4.11.0+incompatible
github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754
github.com/gobuffalo/tags v2.1.0+incompatible
github.com/gobuffalo/x v0.0.0-20190224155809-6bb134105960
github.com/gorilla/context v1.1.1
Expand Down
5 changes: 0 additions & 5 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSn
github.com/gobuffalo/genny v0.1.1 h1:iQ0D6SpNXIxu52WESsD+KoQ7af2e3nCfnSBoSF/hKe0=
github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk=
github.com/gobuffalo/gitgen v0.0.0-20190219185555-91c2c5f0aad5/go.mod h1:ZzGIrxBvCJEluaU4i3CN0GFlu1Qmb3yK8ziV02evJ1E=
github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211 h1:mSVZ4vj4khv+oThUfS+SQU3UuFIZ5Zo6UNcvK8E8Mz8=
github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw=
github.com/gobuffalo/github_flavored_markdown v1.0.4/go.mod h1:uRowCdK+q8d/RF0Kt3/DSalaIXbb0De/dmTqMQdkQ4I=
github.com/gobuffalo/github_flavored_markdown v1.0.5/go.mod h1:U0643QShPF+OF2tJvYNiYDLDGDuQmJZXsf/bHOJPsMY=
Expand All @@ -242,7 +241,6 @@ github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxs
github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg=
github.com/gobuffalo/gogen v0.1.1 h1:dLg+zb+uOyd/mKeQUYIbwbNmfRsr9hd/WtYWepmayhI=
github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE=
github.com/gobuffalo/helpers v0.0.0-20190422082217-384f90c6579f h1:P98kR4yf+APJmZ/xs31tLiCGzXIuVik64l4bcnVFBBo=
github.com/gobuffalo/helpers v0.0.0-20190422082217-384f90c6579f/go.mod h1:g0I3qKQEyJxwnHtEmLugD75eoOiWxEtibcV62tYah9w=
github.com/gobuffalo/helpers v0.0.0-20190506214229-8e6f634af7c3 h1:YJNJhJ0IpTBm9f3WN6pxV4PPXTF3bX0kvtA8/Gjnimw=
github.com/gobuffalo/helpers v0.0.0-20190506214229-8e6f634af7c3/go.mod h1:HlNpmw2+Rjx882VUf6hJfNJs5wpNRzX02KcqCXDlLGc=
Expand All @@ -264,7 +262,6 @@ github.com/gobuffalo/licenser v0.0.0-20181128170751-82cc989582b9/go.mod h1:oU9F9
github.com/gobuffalo/licenser v0.0.0-20181203160806-fe900bbede07/go.mod h1:ph6VDNvOzt1CdfaWC+9XwcBnlSTBz2j49PBwum6RFaU=
github.com/gobuffalo/licenser v0.0.0-20181211173111-f8a311c51159/go.mod h1:ve/Ue99DRuvnTaLq2zKa6F4KtHiYf7W046tDjuGYPfM=
github.com/gobuffalo/licenser v0.0.0-20190224205124-37799bc2ebf6/go.mod h1:ve/Ue99DRuvnTaLq2zKa6F4KtHiYf7W046tDjuGYPfM=
github.com/gobuffalo/licenser v0.0.0-20190329153211-c35c0a2813b2 h1:9X12actO8h7SZ51+6vJRuLHkp2t69Za5tpsmcPxM6D8=
github.com/gobuffalo/licenser v0.0.0-20190329153211-c35c0a2813b2/go.mod h1:ZVWE6uKUE3rGf7sedUHWVjNWrEgxaUQLVFL+pQiWpfY=
github.com/gobuffalo/logger v0.0.0-20181022175615-46cfb361fc27/go.mod h1:8sQkgyhWipz1mIctHF4jTxmJh1Vxhp7mP8IqbljgJZo=
github.com/gobuffalo/logger v0.0.0-20181027144941-73d08d2bb969/go.mod h1:7uGg2duHKpWnN4+YmyKBdLXfhopkAdVM6H3nKbyFbz8=
Expand Down Expand Up @@ -419,11 +416,9 @@ github.com/gobuffalo/release v1.1.3/go.mod h1:CuXc5/m+4zuq8idoDt1l4va0AXAn/OSs08
github.com/gobuffalo/release v1.1.6/go.mod h1:18naWa3kBsqO0cItXZNJuefCKOENpbbUIqRL1g+p6z0=
github.com/gobuffalo/release v1.2.2/go.mod h1:tkFFZua2N5WRxyGDk2cSwQjzkZ/apKKXl5T8P+kEO+E=
github.com/gobuffalo/release v1.2.5/go.mod h1:tkFFZua2N5WRxyGDk2cSwQjzkZ/apKKXl5T8P+kEO+E=
github.com/gobuffalo/release v1.4.0 h1:W+p5GU7Gn1Tzry1GnlIofxnJhbQOy6XfmhH6k4aDbIs=
github.com/gobuffalo/release v1.4.0/go.mod h1:f4uUPnD9dxrWxVy9yy0k/mvDf3EzhFtf7/byl0tTdY4=
github.com/gobuffalo/shoulders v1.0.1/go.mod h1:V33CcVmaQ4gRUmHKwq1fiTXuf8Gp/qjQBUL5tHPmvbA=
github.com/gobuffalo/shoulders v1.0.3/go.mod h1:LqMcHhKRuBPMAYElqOe3POHiZ1x7Ry0BE8ZZ84Bx+k4=
github.com/gobuffalo/shoulders v1.0.4 h1:Hw7wjvyasJJo+bDsebhpnnizHCxfxQ3C4mmLjEzcdXY=
github.com/gobuffalo/shoulders v1.0.4/go.mod h1:LqMcHhKRuBPMAYElqOe3POHiZ1x7Ry0BE8ZZ84Bx+k4=
github.com/gobuffalo/syncx v0.0.0-20181120191700-98333ab04150/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw=
github.com/gobuffalo/syncx v0.0.0-20181120194010-558ac7de985f/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw=
Expand Down
Loading