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
Reading old Rails
Search
Junichi Kobayashi
October 07, 2016
0
200
Reading old Rails
Junichi Kobayashi
October 07, 2016
Tweet
Share
More Decks by Junichi Kobayashi
See All by Junichi Kobayashi
「今のプロジェクトいろいろ大変なんですよ、app/services とかもあって……」/After Kaigi on Rails 2024 LT Night
junk0612
5
2.2k
LR で JSON パーサーを作る / Coding LR JSON Parser
junk0612
2
730
「ナントカLR」を整理する / Clarifying LR Algorithms
junk0612
1
430
From LALR to IELR: A Lrama's Next Step
junk0612
2
3.7k
RubyConf Taiwan / Understanding Parser Generators surrounding Ruby with Contributing Lrama
junk0612
2
5.3k
LL法とLR法の違いは?調べてみた!-完全版-/Comparing LL and LR parse algorithm -EX Edition-
junk0612
0
580
ESM Super LT/Comparing LL and LR parse algorithm
junk0612
1
110
Lrama へのコントリビューションを通して学ぶ Ruby のパーサジェネレータ事情
junk0612
4
5.4k
ソフトウェア開発とコミュニケーション / Communication in Software Development
junk0612
0
1.2k
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.2k
Building a Scalable Design System with Sketch
lauravandoore
459
33k
Building Your Own Lightsaber
phodgson
103
6.1k
It's Worth the Effort
3n
183
27k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.8k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Side Projects
sachag
452
42k
The Power of CSS Pseudo Elements
geoffreycrofte
73
5.3k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Mobile First: as difficult as doing things right
swwweet
222
8.9k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
4
380
Transcript
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Reading� old� Rails Rails� 1.0� 読書会� 経過報告 ⼩林� 純⼀(@junk0612) ESM� 東京⽀社 esm̲LT 2016-10-07(Fri)
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 self.introduce @junk0612 ✓ アジャイル事業部� 新⼊社員 ✓ 好きなもの ⾷べ物:� 麺類 ✓ ゲーム:� ドラクエ ✓ git� コマンド:� reflog ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Date.today.topic Rails1� 読書会始めました ✓ Rails1� のルーティングについ て勉強しました� (途中) ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.before[1] Rails� 勉強会 道具を知ろう ✓ ✓ 難しくてたいへん 時間が短い ✓ 進むスピードが速い ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.before[2] @t-saito 僕も結構難しかったんだよね ⼀緒に僕らのペースで読んでみ る?
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.execute![1] Rails� の現在の� master 多い… ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.execute![2] Rails� 1.0 これならなんとか読めるかも…? ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.details[1] rails� コマンド 今で⾔う� rails� new ✓ 新しい雛形プロジェクトを作る ✓ 内部に雛形を持っていて、それをコ ピーしているだけ ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.details[2] bin/server 今で⾔う� rails� server ✓ WEBrick� か� lighttpd� を選んでサー バを⽴てる ✓ デフォルトは� WEBrick ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.details[3] actionpack/ action̲controller/routing.rb Rails1� のルーティング ✓ RouteSet� はあるけど� Routes� は無 いなぁ…? ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Routes.present?� #=>� false ない… ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Routes.present?� #=>� false ない… ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Routes.present?� #=>� false ない… ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Routes.present?� #=>� true あった!!! ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 Routes.behaviour config/routes.rb� に書かれた 情報に従ってルーティングを⽣ 成 なんか⿊魔術やってるっぽい� (途中) ✓ ✓
Reading� old� Rails� -� Rails� 1.0� 読書会� 経過報告 Powered� by�
Rabbit� 2.1.9 studying.future Rails1� の解明 ✓ 差分による後継バージョンの学 習 ✓ パッチ送りたい! ✓