Last active
August 29, 2015 14:08
-
-
Save mdarby/b330704e4902aac63d99 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# They do different things. exec replaces the current process with the new process. | |
# system invokes another process and returns its exit value to the current process. | |
# backticks invokes another process and returns the output of that process to the current process. | |
while true | |
puts `bundle exec rspec 'spec/dev_free_ipad_idempotent_spec.rb'` | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment