34
Rubyistが 歩むべき道 への道 The way to the Rubyist’s Way 2012-07-29 TokyuRubyKaigi#05 @kwappa / SHIOYA, Hiromu

Rubyistが歩むべき道への道

Embed Size (px)

DESCRIPTION

2012-07-29TokyuRubyKaigi05「Rubyistが歩むべき道への道」by kwappa

Citation preview

Page 1: Rubyistが歩むべき道への道

Rubyistが歩むべき道への道

The way to the Rubyist’s Way2012-07-29 TokyuRubyKaigi#05

@kwappa / SHIOYA, Hiromu

Page 2: Rubyistが歩むべき道への道

http://www.kwappa.net/kwappa

塩谷 啓SHIOYA, Hiromu

Page 3: Rubyistが歩むべき道への道

提供Born in the net, Connected by the net.

Page 4: Rubyistが歩むべき道への道

告知

Page 5: Rubyistが歩むべき道への道

るりま読書会2012-08-11(sat)オラクル青山センターテーマ:Enumerable

Page 7: Rubyistが歩むべき道への道

http://networkingstar.com/news/tupperware-named-one-of-most-admired-companies-in-the-world/

告知

Page 8: Rubyistが歩むべき道への道

TupperTupper is a helper for processing uploaded file via web form.

Page 10: Rubyistが歩むべき道への道

usage

RTFM

Page 11: Rubyistが歩むべき道への道

<form method="POST" action="/upload" enctype="multipart/form-data"> <input type="file" name="dummy_file"> <input type="submit" value="upload"> </form>

view

Page 12: Rubyistが歩むべき道への道

post '/upload' do tupper = Tupper.new session tupper.upload params[:dummy_file] redirect '/', 302 end

controller

Page 13: Rubyistが歩むべき道への道

get '/show_size' do tupper = Tupper.new session unless tupper.has_uploaded_file? redirect '/', 302 end "uploaded file is [#{tupper.uploaded_file}] (size:#{File.size(tupper.uploaded_file)})" end

controller

Page 15: Rubyistが歩むべき道への道

本題

Page 16: Rubyistが歩むべき道への道

Rubyistが歩むべき道The Rubyist’s Way

Page 17: Rubyistが歩むべき道への道

http://codezine.jp/devsumi/2012

【17-C-7】2/17 17:40~19:10From Legacy to Agile

~レガシー開発からアジャイル開発へ~野口 大輔 / 塩谷 啓

Page 20: Rubyistが歩むべき道への道
Page 21: Rubyistが歩むべき道への道
Page 23: Rubyistが歩むべき道への道
Page 24: Rubyistが歩むべき道への道
Page 25: Rubyistが歩むべき道への道
Page 26: Rubyistが歩むべき道への道

https://github.com/kwappa/tupper/watchershttps://rubygems.org/gems/tupper/stats

https://twitter.com/udzura/status/222194923267563521

Page 27: Rubyistが歩むべき道への道
Page 28: Rubyistが歩むべき道への道
Page 29: Rubyistが歩むべき道への道

言葉でなく心で理解できた

Page 30: Rubyistが歩むべき道への道

まとめ

Page 31: Rubyistが歩むべき道への道
Page 32: Rubyistが歩むべき道への道

The Rubyist’s Way

Page 33: Rubyistが歩むべき道への道
Page 34: Rubyistが歩むべき道への道

To start Social coding is the way to the

Rubyist’s way.Thank you for listening.