Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up
for free
RubyRogues at LoneStarRuby
Josh Susser
July 20, 2013
Programming
1
93
RubyRogues at LoneStarRuby
Josh's intro slides for a live panel discussion by the Ruby Rogues.
Josh Susser
July 20, 2013
Tweet
Share
More Decks by Josh Susser
See All by Josh Susser
joshsusser
18
4.5k
joshsusser
2
760
Other Decks in Programming
See All in Programming
dqneo
3
300
makomakok
1
240
christianliebel
PRO
0
140
layzee
1
210
larsrh
0
110
grapecity_dev
0
170
ryokbt
2
290
mackee
0
550
ntaro
0
160
nearmugi
0
180
abeta
1
200
xrdnk
0
100
Featured
See All Featured
jasonvnalue
81
8.1k
moore
125
21k
smashingmag
230
18k
kneath
219
15k
cherdarchuk
71
260k
shlominoach
176
7.5k
jeffersonlam
329
15k
carmenhchung
31
1.5k
maltzj
502
36k
sachag
446
36k
schacon
145
6.6k
holman
448
130k
Transcript
æsthetics
sense of beauty or the appreciation of beauty
a set of principles underlying and guiding the work of
an artist or artistic movement
"It just looks better."
principles <=> gut feel
in Ruby on Rails: :symbols >= "strings"
class Conference < AR::Base has_many "sessions" has_many "speakers" end
class Conference < AR::Base has_many :sessions has_many :speakers end
create_table :users, :force => true do |t| t.string :email, :default
=> "", :null => false t.string :password, :default => "", :null => false t.integer :sign_in_count, :default => 0 t.datetime :created_at t.datetime :updated_at end
create_table "users", :force => true do |t| t.string "email", :default
=> "", :null => false t.string "password", :default => "", :null => false t.integer "sign_in_count", :default => 0 t.datetime "created_at" t.datetime "updated_at" end
class SurpriseController < AC::Base layout "expected" end
class SurpriseController < AC::Base layout :expected end
class SurpriseController < AC::Base layout :expected def expected "surprise" end
end