Good call. I commit with `git add --patch` (`gap`) and `git commit -v` (`gc`) so I always see the diffs I'm committing, and that stuff can't slip through.
- Ben On 12 February 2013 09:53, Michael Pearson <[email protected]> wrote: > On Tue, Feb 12, 2013 at 9:38 AM, Ben Hoskings <[email protected]> wrote: > >> >> 1) Check Gemfile.lock for 'json' and note the version. (e.g. say you had >> json-1.7.6, as we did.) >> 2) Add or update the 'json' entry in your Gemfile to the safe version >> corresponding to your minor version, as follows: >> gem 'json', '>= 1.7.7' >> 3) Run `bundle update json` >> 4) Run specs >> > > 4.5) Run 'git diff Gemfile.lock' to ensure that only the things that you > thought should update updated (I've run 'bundle update' when I meant to run > 'bundle update gemname' before) > > >> 5) SHIP IT >> >> > > -- > Michael Pearson > > -- > You received this message because you are subscribed to the Google Groups > "Ruby or Rails Oceania" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/rails-oceania?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Cheers Ben -- You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/rails-oceania?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
