Erica Kastner
Erica Kastner
Not sure if paulj has submitted a pull request to you, but he has a fix worth merging: http://github.com/paulj/artifice/commit/6511e455b00792c663b054e541ba2a61a1a4ee88 If I create a Net::HTTP request like so: request = Net::HTTP::Post.new(url.path,...
Instead of: ``` store :field, :synthesize => Proc.new { |row| do_some_stuff } ``` Allow: ``` store :field do |row| do_some_stuff and_how end ```
Example project: ``` . └── pods ├── db.yml ``` ``` # in pods/db.yml version: "2.1" services: db: healthcheck: test: ["CMD", "true"] ``` When I run `cage up` I get: ```...
Essentially, this aims to solve the problem of the vault plugin trying to assign tokens for pods that are not enabled in the current target.
I've found that the display format of the old `cage source ls` was difficult to grok at a glance. Here's a new, one-row-per-service format: ``` caladan:rails_hello dkastner$ cargo run source...
We created `cage test ` for our own needs, but if we want cage to be an opinionated framework for multi-container apps that encourages best practices, we need to make...
Note: this is only compatible with docker-compose v2.1+ And that brings up an interesting question: do we want to start being smarter about how compose_yml handles docker-compose.yml versions? That is,...
When I perform a `Mailgun().routes.create` or `Mailgun().routes.update` command, I get the following error: ``` json { "message": "'action' parameter is missing" } ``` I debugged the problem and found that...