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
Bundler
Search
pcasarettto
January 12, 2012
Technology
1
130
Bundler
A short presentation on Bundler
pcasarettto
January 12, 2012
Tweet
Share
More Decks by pcasarettto
See All by pcasarettto
A beleza das interfaces em Go
pcasarettto
2
280
Other Decks in Technology
See All in Technology
実践AIガバナンス
asei
3
300
Vault meets Kubernetes
mochizuki875
0
150
「魔法少女まどか☆マギカ Magia Exedra」での負荷試験の実践と学び
gree_tech
PRO
0
450
RSCの時代にReactとフレームワークの境界を探る
uhyo
8
1.7k
AI時代に非連続な成長を実現するエンジニアリング戦略
sansantech
PRO
3
930
なぜSaaSがMCPサーバーをサービス提供するのか?
sansantech
PRO
6
1.6k
大「個人開発サービス」時代に僕たちはどう生きるか
sotarok
12
5.7k
Jaws-ug名古屋_LT資料_20250829
azoo2024
3
210
Kiroと学ぶコンテキストエンジニアリング
oikon48
5
6.7k
攻撃と防御で実践するプロダクトセキュリティ演習~導入パート~
recruitengineers
PRO
3
1.8k
トヨタ生産方式(TPS)入門
recruitengineers
PRO
6
1.4k
MCPで変わる Amebaデザインシステム「Spindle」の開発
spindle
PRO
3
2.2k
Featured
See All Featured
A Modern Web Designer's Workflow
chriscoyier
696
190k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
The Pragmatic Product Professional
lauravandoore
36
6.8k
KATA
mclloyd
32
14k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.5k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
51
5.6k
How to train your dragon (web standard)
notwaldorf
96
6.2k
How to Think Like a Performance Engineer
csswizardry
26
1.9k
Faster Mobile Websites
deanohume
309
31k
Facilitating Awesome Meetings
lara
55
6.5k
Transcript
Thursday, January 12, 12
make sure that your application has the dependencies it needs
Thursday, January 12, 12
Gemfile Thursday, January 12, 12
Gemfile Thursday, January 12, 12
Gemfile.lock • record of the exact versions of all of
the gems that you used the last time you know for sure that the application worked Thursday, January 12, 12
Updating • Change the Gemfile (gem rails, 3.0.0) • $
bundle install • Test, fix, add Gemfile Gemfile.lock commit Thursday, January 12, 12
Updating • $ bundle update nokogiri • Test, fix, commit
• Test, fix, add Gemfile Gemfile.lock commit Thursday, January 12, 12
Semantic Versioning • rack = 1.2.1(too much) • rack >=
1.0 (too little) • rack ~> 1.2.1(too hopeful) Thursday, January 12, 12