Here's what I did to get things working.
Yep, over at: https://developer.apple.com
class Die | |
def roll_die | |
rand(1..6) | |
end | |
end | |
class CrapsGame | |
attr_accessor :point, :dice_roll | |
def pass |
#!/usr/bin/env python | |
import subprocess, sys, os, zipfile | |
try: | |
import boto | |
except ImportError: | |
print 'requires boto. `pip install boto`' | |
sys.exit(os.EX_UNAVAILABLE) | |
try: |
Here's what I did to get things working.
Yep, over at: https://developer.apple.com
Run rails new --help
to view all of the options you can pass to rails new
:
$ bin/rails new --help
Usage:
rails new APP_PATH [options]
Options:
-r, [--ruby=PATH] # Path to the Ruby binary of your choice
# Default: /Users/eliot/.rbenv/versions/2.2.0/bin/ruby
Here, you might lay out the reasons behind writing this code. You can link to specs, issues, or bugs in order to give someone a better idea of how a decision was made. This is your chance to give context to your reviewer. Ego depletion - the idea that willpower is used up over time - can be easily applied to your reviewer. We are human, after all. You'll likely get one shot at a quality review, so help your reviewer help you. Flush out this section.
How did you test this code? Did you write a unit test, or test it manually? Can you provide an animated gif or a screenshot to demonstrate your code does what it purports to do? What about test output or a useful snippet from a logfile? Help show that your code works.
Is there some part of the code that you know probably doesn't work as it should? Call out potential weak spots, and get help addressing them.
class ChildComponent extends React.Component { | |
render() { | |
const {hello} = this.props.greetings; | |
return <h1>{hello}</h1>; | |
} | |
} | |
const ChildContainer = Relay.createContainer(ChildComponent, { | |
initialVariables: { | |
name: 'A', |
This is a simplified, but fairly thorough, set of scripts and configuration to enable Heroku Release Phase for Rails apps.
Further, this particular set up plays nicely with Heroku Review Apps in that the release
phase script will:
bin/rails db:version
) is 0
.For a "normal" app that usually means it will run the DB migrations.
export function mergeRefs(refs) { | |
return (value) => { | |
refs.forEach((ref) => { | |
if (typeof ref === "function") { | |
ref(value); | |
} else if (ref != null) { | |
ref.current = value; | |
} | |
}); | |
}; |