The calendar is gone.
Click here to view posts


Ruby bundle command line configs
I use DreamHostPS. Its why this page is so fast ;). Point really is that after downloading and installing libxslt-1.1.21 locally. I needed to configure nokogiri to use it. easy enough
./configure --prefix=/home/sbecker/lib
make
make install
gem install nokogiri -- --with-xslt-include=/home/sbecker/lib/include/ --with-xslt-lib=/home/sbecker/lib/lib/ 

Now comes along my 1 rails 3 app where bundle controls every gem I get to use. Ok easy. Add it to the Gemfile and move on. Nope. After searching around for stuff like 'gem bundle command line options' I found one tiny mention of bundle config. Here is the code to set up your command line options. I am not in the mood to learn what it means or why. Maybe later.
bundle config build.nokogiri --with-xslt-include=/home/sbecker/lib/include/ --with-xslt-lib=/home/sbecker/lib/lib/

Simple enough. Just new and not clear.