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
110
Go and Node.js: a comparison
nathany
1
210
Diet Hacks
nathany
2
370
Go 1.6 and HTTP/2
nathany
3
130
Upgrading Rails Redux
nathany
1
91
GopherCon recap
nathany
0
180
Go Functions
nathany
0
100
Go Arrays & Slices
nathany
0
140
Go Types
nathany
2
130
Other Decks in Programming
See All in Programming
DataformでPythonする / dataform-de-python
snhryt
0
160
サイトを作ったらNFCタグキーホルダーを爆速で作れ!
yuukis
0
190
Reactの歴史を振り返る
tutinoko
1
180
変化を楽しむエンジニアリング ~ いままでとこれから ~
murajun1978
0
710
Google I/O Extended Incheon 2025 ~ What's new in Android development tools
pluu
1
270
20250808_AIAgent勉強会_ClaudeCodeデータ分析の実運用〜競馬を題材に回収率100%の先を目指すメソッドとは〜
kkakeru
0
160
なぜ今、Terraformの本を書いたのか? - 著者陣に聞く!『Terraformではじめる実践IaC』登壇資料
fufuhu
4
580
LLMは麻雀を知らなすぎるから俺が教育してやる
po3rin
3
2.1k
自作OSでDOOMを動かしてみた
zakki0925224
1
1.3k
コーディングは技術者(エンジニア)の嗜みでして / Learning the System Development Mindset from Rock Lady
mackey0225
2
430
Strands Agents で実現する名刺解析アーキテクチャ
omiya0555
1
120
The State of Fluid (2025)
s2b
0
130
Featured
See All Featured
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Raft: Consensus for Rubyists
vanstee
140
7.1k
Scaling GitHub
holman
461
140k
GitHub's CSS Performance
jonrohan
1031
460k
Mobile First: as difficult as doing things right
swwweet
223
9.9k
Thoughts on Productivity
jonyablonski
69
4.8k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
21k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
880
Embracing the Ebb and Flow
colly
86
4.8k
We Have a Design System, Now What?
morganepeng
53
7.7k
Balancing Empowerment & Direction
lara
1
550
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