labrador icon indicating copy to clipboard operation
labrador copied to clipboard

Tweaks to installer script to make things smoother...

Open MrJoy opened this issue 13 years ago • 0 comments

If one doesn't want to install to ~/.labrador, one is stuck editing a bunch of different places in the setup script. For example:

cd ~ && git clone git://github.com/chrismccord/labrador.git .labrador && \
cd .labrador && \
echo "rvm use --create 1.9.3-p194@labrador" > .rvmrc && cd ~/.labrador && \
bundle install --deployment && \
open -e ~/.labrador/config/initializers/auth.rb

You can make this less tedious to deal with by changing a couple things:

cd ~ && git clone git://github.com/chrismccord/labrador.git .labrador && \
cd .labrador && \
echo "rvm use --create 1.9.3-p194@labrador" > .rvmrc && cd . && \
bundle install --deployment && \
open -e config/initializers/auth.rb

Also, explicit options for gemset, and auto-creation thereof would be handy, even though this can be done via the "custom" option...

MrJoy avatar Sep 13 '12 21:09 MrJoy