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
Terraform Stacks入門 #HashiTalks
msato
0
280
Datadog RUM を用いた UX 指標の監視・顧客対応への活用
imamura_ko_0314
0
120
マルチモーダル / AI Agent / LLMOps 3つの技術トレンドで理解するLLMの今後の展望
hirosatogamo
12
3.7k
3次元点群データ「VIRTUAL SHIZUOKA』のオープンデータ化による恩恵と協働の未来/FOSS4G Japan 2024
kazz24s
0
130
形式手法の 10 メートル手前 #kernelvm / Kernel VM Study Hokuriku Part 7
ytaka23
5
760
DatabricksにおけるLLMOpsのベストプラクティス
taka_aki
4
1.6k
リンクアンドモチベーション ソフトウェアエンジニア向け紹介資料 / Introduction to Link and Motivation for Software Engineers
lmi
4
300k
データ活用促進のためのデータ分析基盤の進化
takumakouno
2
590
DMARC 対応の話 - MIXI CTO オフィスアワー #04
bbqallstars
1
140
AIチャットボット開発への生成AI活用
ryomrt
0
140
Mini Tokyo 3D × PLATEAU - 公共交通デジタルツインにリアルな風景を
nagix
1
240
QAEチームが辿った3年 ボクらが改善業務にスクラムを選んだワケ / 20241108_cloudsign_ques23
bengo4com
0
1.3k
Featured
See All Featured
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
Visualization
eitanlees
145
15k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
246
1.3M
Documentation Writing (for coders)
carmenintech
65
4.4k
Optimizing for Happiness
mojombo
376
69k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
169
50k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
The Cult of Friendly URLs
andyhume
78
6k
Thoughts on Productivity
jonyablonski
67
4.3k
A Modern Web Designer's Workflow
chriscoyier
693
190k
Teambox: Starting and Learning
jrom
133
8.8k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
25
1.8k
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