- Passion
- Wants to learn
- Eager to learn
- Aptitude
- Can learn a new language with little help
- Understands basics to a Language
- Language comprehension
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
bash local $ brew install -v gource | |
==> Cloning https://github.com/acaudwell/Gource.git | |
Updating /Users/bswift/Library/Caches/Homebrew/gource--git | |
git remote set-url origin https://github.com/acaudwell/Gource.git | |
git fetch origin | |
git fetch --tags | |
==> Checking out tag gource-0.37 | |
git checkout gource-0.37 | |
HEAD is now at 1e12d58... Check for unsetenv. |
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
module Player | |
describe MovieList, "with optional description" do | |
it "is pending example, so that you can write ones quickly" | |
it "is already working example that we want to suspend from failing temporarily" do | |
pending("working on another feature that temporarily breaks this one") |
# Goal: Allow addition of instances to a collection in a factory-built object | |
# when those instances require references to the parent. | |
# Typically occurs in Rails when one model has_many instances of another | |
# See more at: | |
# http://stackoverflow.com/questions/2937326/populating-an-association-with-children-in-factory-girl | |
class Factory | |
def has_many(collection) | |
# after_build is where you add instances to the factory-built collection. |