This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module repro | |
require ( | |
github.com/moby/buildkit v0.7.0 | |
) | |
replace github.com/containerd/containerd => github.com/containerd/containerd v1.3.1-0.20200227195959-4d242818bf55 | |
replace github.com/docker/docker => github.com/docker/docker v1.4.2-0.20200227233006-38f52c9fec82 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module repro | |
require ( | |
github.com/moby/buildkit v0.7.0 | |
) | |
replace github.com/containerd/containerd => github.com/containerd/containerd v1.3.1-0.20200227195959-4d242818bf55 | |
replace github.com/docker/docker => github.com/docker/docker v1.4.2-0.20200227233006-38f52c9fec82 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'active_support/concern' | |
module Filaments | |
# Extends controllers to leave off the `filaments/` prefix from view paths. | |
# | |
# The Filaments controllers are meant to be subclassed by the host | |
# application when necessary to override default behavior and the default | |
# view-path resolution prefix would lead to an annoying reshuffling of | |
# related views every time this subclassing is done. | |
# |