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
第23回Ques_タイミーにおけるQAチームの在り方 / QA Team in Timee
takeyaqa
0
230
製造現場のデジタル化における課題とPLC Data to Cloudによる新しいアプローチ
hamadakoji
0
220
なぜ今 AI Agent なのか _近藤憲児
kenjikondobai
1
620
ドメイン名の終活について - JPAAWG 7th -
mikit
31
18k
マイベストのデータ基盤の現在と未来 / mybest-data-infra-asis-tobe
mybestinc
2
2k
組み込みLinuxの時系列
puhitaku
4
1k
"君は見ているが観察していない"で考えるインシデントマネジメント
grimoh
4
1k
FOSS4G 2024 Japan コアデイ 一般発表25 PythonでPLATEAUのデータを手軽に扱ってみる
ra0kley
1
140
今、始める、第一歩。 / Your first step
yahonda
2
700
GraphRAGを用いたLLMによるパーソナライズド推薦の生成
naveed92
0
200
強いチームと開発生産性
onk
PRO
8
2.8k
AI機能の開発運用のリアルと今後のリアル
akiroom
0
250
Featured
See All Featured
A Tale of Four Properties
chriscoyier
156
23k
Automating Front-end Workflow
addyosmani
1366
200k
RailsConf 2023
tenderlove
29
890
Designing on Purpose - Digital PM Summit 2013
jponch
115
7k
Adopting Sorbet at Scale
ufuk
73
9.1k
How to Ace a Technical Interview
jacobian
276
23k
How GitHub (no longer) Works
holman
310
140k
Docker and Python
trallard
40
3.1k
Why Our Code Smells
bkeepers
PRO
334
57k
KATA
mclloyd
29
14k
What's in a price? How to price your products and services
michaelherold
243
12k
The Pragmatic Product Professional
lauravandoore
31
6.3k
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