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
280
Other Decks in Technology
See All in Technology
Web Intelligence and Visual Media Analytics
weblyzard
PRO
1
5.9k
「経験の点」の位置を意識したキャリア形成 / Career development with an awareness of the “point of experience” position
pauli
4
120
AIでめっちゃ便利になったけど、結局みんなで学ぶよねっていう話
kakehashi
PRO
1
460
白金鉱業Meetup_Vol.18_AIエージェント時代のUI/UX設計
brainpadpr
1
250
読んで学ぶ Amplify Gen2 / Amplify と CDK の関係を紐解く #jawsug_tokyo
tacck
PRO
1
280
AWSの新機能検証をやる時こそ、Amazon Qでプロンプトエンジニアリングを駆使しよう
duelist2020jp
1
300
PagerDuty×ポストモーテムで築く障害対応文化/Building a culture of incident response with PagerDuty and postmortems
aeonpeople
3
490
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
5.4k
PostgreSQL Log File Mastery: Optimizing Database Performance Through Advanced Log Analysis
shiviyer007
PRO
1
140
Databricksで完全履修!オールインワンレイクハウスは実在した!
akuwano
0
120
白金鉱業Meetup_Vol.18_生成AIはデータサイエンティストを代替するのか?
brainpadpr
3
200
クラウド開発環境Cloud Workstationsの紹介
yunosukey
0
210
Featured
See All Featured
Being A Developer After 40
akosma
91
590k
Become a Pro
speakerdeck
PRO
28
5.3k
GitHub's CSS Performance
jonrohan
1030
460k
KATA
mclloyd
29
14k
Optimising Largest Contentful Paint
csswizardry
37
3.2k
How STYLIGHT went responsive
nonsquared
100
5.5k
Building an army of robots
kneath
305
45k
Rails Girls Zürich Keynote
gr2m
94
13k
Practical Orchestrator
shlominoach
187
11k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
2.9k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
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