Bundle install in parallel

Posted Over 10 years ago by Tadej.
github.com

Gave a shot to the new Bundler 1.4.0RC1 during the weekend and found out it now supports gem installation...

Find out branches containing a commit

Posted About 11 years ago by Dragos Miron.

If you have a commit and you want to see in what branches is is included, you have to write...

Killing wkhtmltopdf during cucumber

Posted Over 11 years ago by Nasir Jamal.

wkhtmltopdf hangs on mac during cucumber unless we click on it. The main reason is with the version we use...

Cleaner Rspec

Posted Over 11 years ago by Nasir Jamal.

When simply checking equality or truthiness then Instead of: it "should have role set to admin" do @user.role.should eql('admin...

Creating a gem in lib folder

Posted Over 11 years ago by fragalla.
github.com

Go to lib folder and use bundler to generate main files for a gem: $ bundle gem test_gem create test...

Rebase your feature branches

Posted Over 11 years ago by Arne Hartherz.

Regularly, but at least before merging your feature branches, rebase them to get rid of "fix typo" and "wip" commits...

Git Branch naming

Posted Almost 12 years ago by Julien Letessier.

This is how we name branches : / - (features) fix/ / - (bugs) story is an dash-delimited version of the story name, and...