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
140
Go Functions
nathany
0
89
Go Arrays & Slices
nathany
0
110
Go Types
nathany
2
120
Other Decks in Programming
See All in Programming
生成AIでGitHubソースコード取得して仕様書を作成
shukob
0
360
rails statsで大解剖 🔍 “B/43流” のRailsの育て方を歴史とともに振り返ります
shoheimitani
2
930
「とりあえず動く」コードはよい、「読みやすい」コードはもっとよい / Code that 'just works' is good, but code that is 'readable' is even better.
mkmk884
3
280
急成長期の品質とスピードを両立するフロントエンド技術基盤
soarteclab
0
930
PHPで学ぶプログラミングの教訓 / Lessons in Programming Learned through PHP
nrslib
2
230
PHPUnitしか使ってこなかった 一般PHPerがPestに乗り換えた実録
mashirou1234
0
180
nekko cloudにおけるProxmox VE利用事例
irumaru
3
430
Recoilを剥がしている話
kirik
5
6.7k
今年一番支援させていただいたのは認証系サービスでした
satoshi256kbyte
1
250
Fibonacci Function Gallery - Part 1
philipschwarz
PRO
0
220
「Chatwork」Android版アプリを 支える単体テストの現在
okuzawats
0
180
Webエンジニア主体のモバイルチームの 生産性を高く保つためにやったこと
igreenwood
0
330
Featured
See All Featured
Fireside Chat
paigeccino
34
3.1k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.9k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
28
4.4k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
How STYLIGHT went responsive
nonsquared
95
5.2k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.1k
A Tale of Four Properties
chriscoyier
157
23k
What's in a price? How to price your products and services
michaelherold
243
12k
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