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
120
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
260
Other Decks in Technology
See All in Technology
デジタルアイデンティティ人材育成推進ワーキンググループ 翻訳サブワーキンググループ 活動報告 / 20250114-OIDF-J-EduWG-TranslationSWG
oidfj
0
540
Amazon Q Developerで.NET Frameworkプロジェクトをモダナイズしてみた
kenichirokimura
1
200
カップ麺の待ち時間(3分)でわかるPartyRockアップデート
ryutakondo
0
140
Docker Desktop で Docker を始めよう
zembutsu
PRO
0
170
完全自律型AIエージェントとAgentic Workflow〜ワークフロー構築という現実解
pharma_x_tech
0
350
20250116_JAWS_Osaka
takuyay0ne
2
200
Amazon Route 53, 待ちに待った TLSAレコードのサポート開始
kenichinakamura
0
170
DMMブックスへのTipKit導入
ttyi2
1
110
ゼロからわかる!!AWSの構成図を書いてみようワークショップ 問題&解答解説 #デッカイギ #羽田デッカイギおつ
_mossann_t
0
1.5k
AWSサービスアップデート 2024/12 Part3
nrinetcom
PRO
0
140
Alignment and Autonomy in Cybozu - 300人の開発組織でアラインメントと自律性を両立させるアジャイルな組織運営 / RSGT2025
ama_ch
1
2.4k
TSのコードをRustで書き直した話
askua
2
170
Featured
See All Featured
We Have a Design System, Now What?
morganepeng
51
7.3k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
27
1.5k
A Philosophy of Restraint
colly
203
16k
What's in a price? How to price your products and services
michaelherold
244
12k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
30
2.1k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
127
18k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
26
1.9k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.1k
Docker and Python
trallard
43
3.2k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
44
9.4k
It's Worth the Effort
3n
183
28k
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