Skip to content

Instantly share code, notes, and snippets.

@jendiamond
Last active December 22, 2015 16:49
Show Gist options
  • Select an option

  • Save jendiamond/6502297 to your computer and use it in GitHub Desktop.

Select an option

Save jendiamond/6502297 to your computer and use it in GitHub Desktop.
Week 8 Day 36

Week 8 Day 36

Title

Jen's Wednesday

Met with Jessica at Pivotal Labs. We checked out the issue I am working on about returning a message when the gem name is invalid. We wrote a test for it and realized that my rspec wasn't working with the bundler files. Jessica, then Steve, then Lars tried a bunch of different things to make it work. In the end the only solution was to re-install my computer.

When my computer was re-installed my test passed.

When I was using Middleman earlier I was working in a branch. I signed back into it and I got this message:

$ git checkout invalid_gemname   
  M	Rakefile  
  M	bin/bundle_ruby  
  M	lib/bundler/templates/Executable  
  M	spec/bundler/dsl_spec.rb  
  Switched to branch 'invalid_gemname'

http://stackoverflow.com/questions/4949652/git-checkout-what-does-this-weird-output-mean (I figured that it was something like this but this is much clearer than what i was thinking.)

That's the output of git status; git is showing you that after checking out master there are still uncommited changes to your working copy (one modified file and one deleted file).

Check man git-status:

M = modified
A = added
D = deleted
R = renamed
C = copied
U = updated but unmerged
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment