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
.selector-one { | |
@include respond-to(phone) { | |
// phone and below (because it's the smallest) | |
} | |
@include respond-to(desktop-up) { | |
// desktop and higher | |
} | |
@include respond-to(ultra) { |
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
#!/usr/bin/env ruby | |
# Usage: | |
# git clog # prints | |
# git clog -w # writes | |
# | |
# https://gist.github.com/2880525 | |
module Clog | |
extend self |
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
# This is my take on a rails 3.1 setup with mongoid, rspec2, guard, spork | |
# and factory girl. | |
# | |
# Thanks to: | |
# http://gist.github.com/568754/ (inspiration) | |
# http://railscasts.com/episodes/275-how-i-test (rspec and guard) | |
# http://railscasts.com/episodes/285-spork (spork and guard) | |
# http://github.com/diaspora/diaspora (.rvmrc) | |
# http://stackoverflow.com/questions/7801073/spork-timer-not-resetting-between-runs | |
# and others... |