This is an automated email from the ASF dual-hosted git repository.
nferraro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from 44b9c51 information to update the homebrew formula
new 7a9b7f8 Fix #1449: add support for modeline options
new d5e7502 Fix #1449: fix help command and logs
new fd1646a Fix #1449: document modeline and CLI
new 000595f Fix #1171: fix error in ready condition from replicaset
new f0e7385 Fix #1449: fix lint and typos
new 4b5f215 Fix #1449: add e2e check on help option
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
cmd/kamel/main.go | 3 +-
docs/modules/ROOT/nav-end.adoc | 2 -
docs/modules/ROOT/nav.adoc | 4 +
docs/modules/ROOT/pages/cli/cli.adoc | 54 +++++++++++
docs/modules/ROOT/pages/cli/modeline.adoc | 98 +++++++++++++++++++
e2e/common/offline_commands_test.go | 6 ++
pkg/cmd/modeline.go | 148 +++++++++++++++++++++++++++++
pkg/cmd/modeline_test.go | 132 ++++++++++++++++++++++++++
pkg/cmd/run.go | 14 ++-
pkg/util/kubernetes/conditions.go | 4 +-
pkg/util/modeline/parser.go | 84 ++++++++++++++++
pkg/util/modeline/parser_test.go | 153 ++++++++++++++++++++++++++++++
pkg/util/modeline/types.go | 7 ++
13 files changed, 699 insertions(+), 10 deletions(-)
create mode 100644 docs/modules/ROOT/pages/cli/cli.adoc
create mode 100644 docs/modules/ROOT/pages/cli/modeline.adoc
create mode 100644 pkg/cmd/modeline.go
create mode 100644 pkg/cmd/modeline_test.go
create mode 100644 pkg/util/modeline/parser.go
create mode 100644 pkg/util/modeline/parser_test.go
create mode 100644 pkg/util/modeline/types.go