defunkt / github-gem

`github` command line helper for simplifying your GitHub experience.
http://github.com
MIT License
1.12k stars 188 forks source link

New version with a host of patches from various forks included - now supports ruby 1.9 #23

Open kristianmandrup opened 14 years ago

kristianmandrup commented 14 years ago

Check it out at: http://github.com/kristianmandrup/github-gem

drnic commented 13 years ago

I am so scared to attempt to merge this in; but very keen.

Is the 0.4.6 history summary the sum total of all the patches?

+== 0.4.6 2010-30-11
+Fixed Shell bug using fork from 'bronson'
+  replace @error = err if err.any?
+  replace @out = out if err.any?
+
+Refactored into:
+  replace @error = err unless err.empty?
+  replace @out = out unless out.empty?
+
+Also added String extension just in case bug is elsewhere...
+
+class String 
+  def any?
+    !empty?
+  end
+end
drnic commented 13 years ago

Arhh, pooey, you have merged in stuff I just merged in. Damn.

Do you have time to check whether your branch matches with the current HEAD?

Grab me on skype at nicwilliams if you want to talk too.