Jacob Evans

Results 43 comments of Jacob Evans

I have no idea how our installations are different, but it is good to get confirmation that I am not the only one. ``` ~ ❯❯❯ docker-machine inspect --format="{{.HostOptions.AuthOptions.StorePath}}" dev...

Yeah it is obvious this is happening to others (see #142). I'll look at making a PR to support both places for the key.

As far as I can see the implementation used by `docker-machine ssh dev` resolves the ssh client key to: ``` go filepath.Join(d.StorePath, "machines", d.MachineName, file) ``` Where file is "id_rsa"...

I think docker-osx-dev is living in the middle of being a re-usable component and being the docker development tool (the Tool). To be the Tool, docker-osx-dev would need to include...

Definitely part of the .flickr-store hierarchy, but it does mean we dupe files if they are the exact same.

It's weird mate, `File::write` should be inherited by `IO` (http://ruby-doc.org/core-1.9.3/IO.html#method-c-write). Does this happen every time you attempt to run this?

Oh I see it now, you're using `1.9.2` which doesn't seem to have `File::write` only `File#write` http://ruby-doc.org/core-1.9.2/IO.html#method-i-write. It should work if you update to a recent version of Ruby(1.9.3). Or...

I have the same issue, though a little different. I assumed since I didn't need confirmable I didn't require confirmation_token in my model, but I guess I was wrong. ```...

This is what is reported around the exception dump: https://gist.github.com/dekz/fd652d48a6d43009b037 I'll try and wade through and find the debug message. Here are some that I captured with debug on: https://gist.github.com/dekz/bec973ad82a7e57bc091

So I may have tracked down a possible problem. In the deserializer it attempts to find the class to instantiate, in this case Network. It's picking up a different Network,...