Skip to content

Commit 03a94db

Browse files
committed
Bundler post
1 parent 930360e commit 03a94db

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

_posts/2013-07-26-bundler.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
layout: post
3+
title: Bundler Saves the Day
4+
categories:
5+
- blog
6+
---
7+
8+
I ran into some errors with [homebrew](http://brew.sh/) trying to install [Octave](http://www.gnu.org/software/octave/) (a potential [Matlab](http://www.mathworks.com/products/matlab/) replacement) on Wednesday. One of the troubleshooting steps included uninstalling [macports](http://guide.macports.org/). It wasn't until after I saw some of the items macports was deleting that I noticed it would be dropping some of [nokogiri](http://nokogiri.org/)'s dependencies.
9+
10+
After the macports uninstall was complete, I was able to confirm the same by running the tests for my side project.
11+
12+
> TESTS FAIL!
13+
14+
Luckily I used [bundler](http://bundler.io/) when building [a simple Sinatra/Active Record app](https://github.com/queuebit/nai.warikan) last week.
15+
16+
### Steps to make tests pass again
17+
1. Create a Gemfile for the project
18+
2. `bundle install`
19+
3. `rake test`
20+
> TESTS PASS!
21+
4. `git add Gemfile`
22+
5. `git commit -m "Thanks Bundler!"

0 commit comments

Comments
 (0)