The Pragamatic ProgrammerThe Passionate ProgrammerProgramming ElixirGrokking AlgorithmsThe Art of Readable Code- Practical Object-Oriented Design in Ruby
- Rails 4 Test Prescriptions
- Ruby Performance Optimization
- Eloquent Ruby
- Design Patterns in Ruby
This file contains hidden or 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
#!/bin/sh | |
# Redirect output to stderr. | |
exec 1>&2 | |
# enable user input | |
exec < /dev/tty | |
consoleregexp='console.log|debugger|binding.pry' | |
# CHECK | |
if test $(git diff --cached | grep -E $consoleregexp | wc -l) != 0 | |
then |
This file contains hidden or 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
C:\windows\system32\bash.exe -l -i -cur_console:p1 -new_console:p:n |
NewerOlder