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 Tips & Tricks
Search
Nathan Youngman
January 16, 2014
Programming
0
140
Bundler Tips & Tricks
Nathan Youngman
January 16, 2014
Tweet
Share
More Decks by Nathan Youngman
See All by Nathan Youngman
The Healthy Programmer
nathany
2
93
Go and Node.js: a comparison
nathany
1
170
Diet Hacks
nathany
2
340
Go 1.6 and HTTP/2
nathany
3
110
Upgrading Rails Redux
nathany
1
84
GopherCon recap
nathany
0
150
Go Functions
nathany
0
90
Go Arrays & Slices
nathany
0
120
Go Types
nathany
2
120
Other Decks in Programming
See All in Programming
Асинхронность неизбежна: как мы проектировали сервис уведомлений
lamodatech
0
1.3k
はてなにおけるfujiwara-wareの活用やecspressoのCI/CD構成 / Fujiwara Tech Conference 2025
cohalz
3
2.7k
「とりあえず動く」コードはよい、「読みやすい」コードはもっとよい / Code that 'just works' is good, but code that is 'readable' is even better.
mkmk884
6
1.4k
知られざるDMMデータエンジニアの生態 〜かつてツチノコと呼ばれし者〜
takaha4k
1
430
LLM Supervised Fine-tuningの理論と実践
datanalyticslabo
8
1.9k
React 19でお手軽にCSS-in-JSを自作する
yukukotani
5
560
DevFest - Serverless 101 with Google Cloud Functions
tunmise
0
140
為你自己學 Python
eddie
0
520
ゼロからの、レトロゲームエンジンの作り方
tokujiros
3
1k
DevinとCursorから学ぶAIエージェントメモリーの設計とMoatの考え方
itarutomy
0
150
歴史と現在から考えるスケーラブルなソフトウェア開発のプラクティス
i10416
0
300
Lookerは可視化だけじゃない。UIコンポーネントもあるんだ!
ymd65536
1
130
Featured
See All Featured
The Cult of Friendly URLs
andyhume
78
6.1k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
30
2.1k
Designing for humans not robots
tammielis
250
25k
Keith and Marios Guide to Fast Websites
keithpitt
410
22k
Measuring & Analyzing Core Web Vitals
bluesmoon
5
210
Raft: Consensus for Rubyists
vanstee
137
6.7k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
How to Ace a Technical Interview
jacobian
276
23k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.3k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
26
1.9k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
Transcript
Bundler Tips & Tricks ! ! @nathany
Parallel Install -j4 Bundler 1.5.2+
Outdated bundle outdated ––pre ! • rails (4.1.0.beta1 > 4.0.2)
Gemfile specifies "~> 4.0.2"
Create a Gem bundle gem mygem ––test rspec ––bin
Multiple Gemfiles Test against multiple versions of ActiveSupport ! BUNDLE_GEMFILE=spec/gemfiles/Gemfile.rails-4.1.x
bundle install ! BUNDLE_GEMFILE=spec/gemfiles/Gemfile.rails-4.1.x bundle exec rspec spec ! Travis CI gemfile: - spec/gemfiles/Gemfile.rails-4.0.x - spec/gemfiles/Gemfile.rails-4.1.x Blog post
Local Paths gem "rack", github: "rack/rack", branch: "master" ! #
gem "rack", path: "~/projects/rack" ! ! Override ! bundle config local.rack ~/projects/rack Blog post
The End What’s New Changelog