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
100
Go and Node.js: a comparison
nathany
1
200
Diet Hacks
nathany
2
360
Go 1.6 and HTTP/2
nathany
3
130
Upgrading Rails Redux
nathany
1
88
GopherCon recap
nathany
0
170
Go Functions
nathany
0
96
Go Arrays & Slices
nathany
0
140
Go Types
nathany
2
130
Other Decks in Programming
See All in Programming
ktr0731/go-mcpでMCPサーバー作ってみた
takak2166
0
170
Using AI Tools Around Software Development
inouehi
0
1.2k
Bytecode Manipulation 으로 생산성 높이기
bigstark
2
360
関数型まつりレポート for JuliaTokai #22
antimon2
0
130
AIネイティブなプロダクトをGolangで挑む取り組み
nmatsumoto4
0
120
Javaのルールをねじ曲げろ!禁断の操作とその代償から学ぶメタプログラミング入門 / A Guide to Metaprogramming: Lessons from Forbidden Techniques and Their Price
nrslib
3
2k
SODA - FACT BOOK
sodainc
1
1.1k
Development of an App for Intuitive AI Learning - Blockly Summit 2025
teba_eleven
0
120
Elixir で IoT 開発、 Nerves なら簡単にできる!?
pojiro
1
150
複数アプリケーションを育てていくための共通化戦略
irof
10
4k
レガシーシステムの機能調査・開発におけるAI利活用
takuya_ohtonari
0
610
Perplexity Slack Botを作ってAI活用を進めた話 / AI Engineering Summit プレイベント
n3xem
0
670
Featured
See All Featured
Practical Orchestrator
shlominoach
188
11k
How STYLIGHT went responsive
nonsquared
100
5.6k
Agile that works and the tools we love
rasmusluckow
329
21k
What's in a price? How to price your products and services
michaelherold
245
12k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
16
940
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Balancing Empowerment & Direction
lara
1
340
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
43
2.4k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Intergalactic Javascript Robots from Outer Space
tanoku
271
27k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
20
1.3k
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