Skip to content

Commit

Permalink
Merge pull request #11 from wawandco/main
Browse files Browse the repository at this point in the history
Latest ox
  • Loading branch information
paganotoni authored Dec 15, 2021
2 parents be28b2f + 22faf31 commit 91cf510
Show file tree
Hide file tree
Showing 5 changed files with 525 additions and 381 deletions.
8 changes: 4 additions & 4 deletions command.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import (
"errors"
"io/ioutil"

"github.com/gobuffalo/pop/v5"
"github.com/gobuffalo/pop/v6"
"github.com/jackc/pgx/v4"
"github.com/spf13/pflag"
"github.com/wawandco/liquo/internal/log"
"github.com/wawandco/oxpecker/plugins"
"github.com/wawandco/ox/plugins/core"
)

var (
_ plugins.Command = (*Command)(nil)
_ plugins.HelpTexter = (*Command)(nil)
_ core.Command = (*Command)(nil)
_ core.HelpTexter = (*Command)(nil)

// CreateInstruction for the database tables that should be in the
// database.
Expand Down
6 changes: 3 additions & 3 deletions generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/gobuffalo/flect"
"github.com/spf13/pflag"
"github.com/wawandco/liquo/internal/log"
"github.com/wawandco/oxpecker/plugins"
"github.com/wawandco/ox/plugins/core"
)

var (
Expand All @@ -36,9 +36,9 @@ var (

var (
// Ensuring we're building a plugin
_ plugins.Plugin = (*Generator)(nil)
_ core.Plugin = (*Generator)(nil)
// Ensuring the plugin is a flagparser
_ plugins.FlagParser = (*Generator)(nil)
_ core.FlagParser = (*Generator)(nil)
)

// Generator for liquibase SQL migrations, it generates xml liquibase
Expand Down
11 changes: 6 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ go 1.16

require (
github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b
github.com/gobuffalo/flect v0.2.2
github.com/gobuffalo/pop/v5 v5.3.3
github.com/jackc/pgx/v4 v4.11.0
github.com/gobuffalo/flect v0.2.4
github.com/gobuffalo/pop/v6 v6.0.1
github.com/jackc/pgx/v4 v4.13.0
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.5.1
github.com/wawandco/oxpecker v1.4.3
github.com/stretchr/testify v1.7.0
github.com/wawandco/ox v0.12.0-rc.1
)
Loading

0 comments on commit 91cf510

Please sign in to comment.