RochesterinNYC / bundler-gsoc

Documentation and Utility Scripts for Bundler GSoC Mentoring
1 stars 1 forks source link

Boggs - 6/21/2016 #32

Closed b-ggs closed 8 years ago

b-ggs commented 8 years ago

Date: (6/21/2016)

What I Did and Worked On (Yesterday):

RochesterinNYC commented 8 years ago

@b-ggs for the integration specs, the bundle ~~~ invocation runs in a separate process so you can't access the binding.pry/debugging session in that other process from the primary process (the one running the specs). What I typically do is put a large sleep right before the bundle invocation in the appropriate spec, and then treat the generated tmp directory and its contents as a reproducible scenario you can copy, run bundle commands on, etc.

b-ggs commented 8 years ago

@RochesterinNYC Ah, I see. Didn't occur to me to use the generated tmp dir, ha. Just tried it out, works perfectly. Thanks!