Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Rails Magic Exposed
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Jesse Wolgamott
August 11, 2012
Programming
2
2.4k
Rails Magic Exposed
The Ruby that powers Rails.. LoneStarRubyConf 2012
Jesse Wolgamott
August 11, 2012
Tweet
Share
More Decks by Jesse Wolgamott
See All by Jesse Wolgamott
React vs React-Native
jwo
0
140
What is an API
jwo
0
200
DIY Rails Authentication
jwo
0
230
ActionCable - For Not Another Chat App
jwo
3
1.8k
SlackBot.rb - Create You a Slack Bot
jwo
1
1.4k
react-rails: an isomorphic match made in heaven
jwo
0
1.4k
Docker - next big thing
jwo
0
1k
Ruby 2.1 Overview
jwo
0
1k
Rails 4: Appetizers
jwo
1
1k
Other Decks in Programming
See All in Programming
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
470
CDIの誤解しがちな仕様とその対処TIPS
futokiyo
0
170
Agent Skills Workshop - AIへの頼み方を仕組み化する
gotalab555
14
7.9k
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
210
Geminiの機能を調べ尽くしてみた
naruyoshimi
0
200
エージェント開発初心者の僕がエージェントを作った話と今後やりたいこと
thasu0123
0
230
Codexに役割を持たせる 他のAIエージェントと組み合わせる実務Tips
o8n
0
420
Head of Engineeringが現場で回した生産性向上施策 2025→2026
gessy0129
0
210
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
230
15年目のiOSアプリを1から作り直す技術
teakun
1
600
Takumiから考えるSecurity_Maturity_Model.pdf
gessy0129
1
120
Python’s True Superpower
hynek
0
200
Featured
See All Featured
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
280
Why Your Marketing Sucks and What You Can Do About It - Sophie Logan
marketingsoph
0
99
Building Flexible Design Systems
yeseniaperezcruz
330
40k
Crafting Experiences
bethany
1
77
Google's AI Overviews - The New Search
badams
0
930
What Being in a Rock Band Can Teach Us About Real World SEO
427marketing
0
190
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
118
110k
Making the Leap to Tech Lead
cromwellryan
135
9.8k
A Modern Web Designer's Workflow
chriscoyier
698
190k
How to build an LLM SEO readiness audit: a practical framework
nmsamuel
1
660
HDC tutorial
michielstock
1
500
Transcript
Rails magic Saturday, August 11, 12
EPFT NBHJD FYJTU Saturday, August 11, 12
MFU`TBTL 4$*&/$& Saturday, August 11, 12
(PPHMF 3FTVMUT Saturday, August 11, 12
Framework Magic Total php (1994) 132000 2.527E+10 java (1995) 45900
960000000 .net (2002) 4400 250000000 django (2004) 9370 44300000 rails (2005) 7040 20300000 Saturday, August 11, 12
.BHJD3BUJP w1)1 w+BWB w/&5 Saturday, August 11, 12
.BHJD3BUJP w%KBOHP w3BJMT Saturday, August 11, 12
0 1 2 3 4 php (1994) java (1995) .net
(2002) django (2004) rails (2005) 0.052 0.478 0.176 2.115 3.468 Magic over Time Frequency / 10000 Saturday, August 11, 12
0 1 2 3 4 php (1994) java (1995) .net
(2002) django (2004) rails (2005) Node 0.052 0.478 0.176 2.115 3.468 2.031 A Step Back Saturday, August 11, 12
0 100 200 300 400 php (1994) .net (2002) rails
(2005) Meteor.js 0.052 0.478 0.176 2.115 3.468 2.031 345.810 MAGIC of Meteor Saturday, August 11, 12
l"OZTVGpDJFOUMZ BEWBODFE UFDIOPMPHZJT JOEJTUJOHVJTIBCMF GSPNNBHJDz "SUIVS$$MBSL Saturday, August 11, 12
dynamic finders Saturday, August 11, 12
id = params[:customer_id] YourModel.find_by_customer_id id Saturday, August 11, 12
def method_missing(method_id, *arguments) if match = /find_(all_by|by)_([_a-zA-Z]\w*)/. match(method_id.to_s) # find...
elsif match = /find_or_create_by_([_a-zA-Z] \w*)/. match(method_id.to_s) # find_or_create... else super end end Saturday, August 11, 12
magic columns Saturday, August 11, 12
created_at and updated_at counter_caches type Saturday, August 11, 12
def apply_it(items) items.map do |item| item.apply! if item.respond_to? (:apply!) end
end Saturday, August 11, 12
Active Record definition Saturday, August 11, 12
class User < ActiveRecord::Base has_many :posts has_many :comments, through: :posts
validates_presence_of :email end Saturday, August 11, 12
class SuperWo 20.times {|i| puts "This is the #{i}”} def
wat! puts "hi" end end SuperWo.new.wat! Try it out: http://rubyfiddle.com/riddles/a63dd Saturday, August 11, 12
auto loading Saturday, August 11, 12
Dir.glob('./app/models/*').each do |file| require file end require_relative 'db/setup' require_relative 'models/page'
require_relative 'models/book' Saturday, August 11, 12
CFDBVTF "DUJWF4VQQPSU %FQFOEFODJFT VSM IUUQSLIJN DPEFSFMPBEJOH Saturday, August 11, 12
# Extremely simple autoloading implementation class Module alias const_missing_without_autoloading const_missing
def const_missing(const) path = “./#{name.gsub('::', '/')}/#{const}" path.gsub!(/([a-z\d])([A-Z])/,'\1_\2') require path.downcase const_defined?(const) ? const_get(const) : super rescue LoadError => error warn(error.message) super end end Saturday, August 11, 12
"VUP-PBEJO"DUJPO HJUIVCKXP DMPBLFEUZSJPO Saturday, August 11, 12
4PNVDINPSF Saturday, August 11, 12
class Foo @@foo ||= 42 puts @@foo # 42 end
# reload... class Foo @@foo ||= 23 puts @@foo # 42 end Saturday, August 11, 12
# reload... Object.send(:remove_const, :Foo) class Foo @@foo ||= 23 puts
@@foo # 23 end Saturday, August 11, 12
custom ruby Saturday, August 11, 12
NPOLFZQBUDIJOH Saturday, August 11, 12
numbers = (1..100).to_a numbers.first numbers.last numbers.forty_two Saturday, August 11, 12
def forty_two self[41] end "MTPLOPXOBTBDDFTTJOHUIF SFEEJU Saturday, August 11, 12
class Enumerable def standard_dev Math.sqrt(sample_variance) end def sample_variance mean =
sum.to_f / size.to_f sum{|i| (i-mean)**2} / size end end Saturday, August 11, 12
review Saturday, August 11, 12
EZOBNJD@pOEFST NFUIPE@NJTTJOH Saturday, August 11, 12
NBHJD@DPMVNOT SFTQPOE@UP Saturday, August 11, 12
BS@EFpOJUJPOT DPNQJMF@UJNF@DPEF Saturday, August 11, 12
BVUP@MPBEJOH DPOTU@NJTTJOH Saturday, August 11, 12
NPOLFZ@QBUDIJOH PQFO@DMBTTFT Saturday, August 11, 12
@@jwo ruby off rails Saturday, August 11, 12