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
Jesse Wolgamott
August 11, 2012
Programming
2
2.3k
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
98
What is an API
jwo
0
170
DIY Rails Authentication
jwo
0
180
ActionCable - For Not Another Chat App
jwo
3
1.4k
SlackBot.rb - Create You a Slack Bot
jwo
1
1.2k
react-rails: an isomorphic match made in heaven
jwo
0
1.2k
Docker - next big thing
jwo
0
840
Ruby 2.1 Overview
jwo
0
850
Rails 4: Appetizers
jwo
1
860
Other Decks in Programming
See All in Programming
シールドクラスをはじめよう / Getting Started with Sealed Classes
mackey0225
4
640
色々なIaCツールを実際に触って比較してみる
iriikeita
0
330
as(型アサーション)を書く前にできること
marokanatani
9
2.6k
『ドメイン駆動設計をはじめよう』のモデリングアプローチ
masuda220
PRO
8
530
Webの技術スタックで マルチプラットフォームアプリ開発を可能にするElixirDesktopの紹介
thehaigo
2
1k
Streams APIとTCPフロー制御 / Web Streams API and TCP flow control
tasshi
2
350
Less waste, more joy, and a lot more green: How Quarkus makes Java better
hollycummins
0
100
3rd party scriptでもReactを使いたい! Preact + Reactのハイブリッド開発
righttouch
PRO
1
600
Quine, Polyglot, 良いコード
qnighy
4
640
Contemporary Test Cases
maaretp
0
130
subpath importsで始めるモック生活
10tera
0
300
ピラミッド、アイスクリームコーン、SMURF: 自動テストの最適バランスを求めて / Pyramid Ice-Cream-Cone and SMURF
twada
PRO
10
1.3k
Featured
See All Featured
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
Designing the Hi-DPI Web
ddemaree
280
34k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
Statistics for Hackers
jakevdp
796
220k
Optimizing for Happiness
mojombo
376
70k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
31
2.7k
Put a Button on it: Removing Barriers to Going Fast.
kastner
59
3.5k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
246
1.3M
VelocityConf: Rendering Performance Case Studies
addyosmani
325
24k
Writing Fast Ruby
sferik
627
61k
Building a Scalable Design System with Sketch
lauravandoore
459
33k
The Straight Up "How To Draw Better" Workshop
denniskardys
232
140k
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