I hereby claim:
- I am cookiefission on github.
- I am seankenny (https://keybase.io/seankenny) on keybase.
- I have a public key whose fingerprint is 9D8F 8E4D C5FB 0438 78E8 331A 78EC B059 6D36 4FD6
To claim this, I am signing this object:
cd() { | |
undef -f cd; | |
[ `ruby -rdate -e "puts (Date.today.day % 5)"` -eq 0 ] && sl; | |
cd $@; | |
} |
Rails.application.routes.draw do | |
versioned do | |
resources :flights | |
end | |
# Using the `versioned` helper with v1/ v2/ and v3/ directories existing | |
# is equivalent to doing: | |
# namespace :v1 do | |
# resources :flights | |
# end |
# Preferred Gemfile | |
run 'rm Gemfile' | |
file 'Gemfile', <<-GEMS | |
source 'https://rubygems.org' | |
gem 'rails', '>= 5.0.0.beta2', '< 5.1' | |
gem 'mysql2', '>= 0.3.18', '< 0.5' | |
gem 'puma' |
I hereby claim:
To claim this, I am signing this object:
COMPILER = gcc | |
COMPILER_FLAGS = -Wall -g | |
RM = rm -f | |
SOURCES = $(wildcard *.c) | |
OBJECTS = $(SOURCES:%.c=%) | |
all: ${OBJECTS} |