Last active
May 9, 2016 14:08
-
-
Save xxxVxxx/613c0469f0b3ff020ad018fa908ce057 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#latest release of veewee requires ruby > 2.1 and gem > 1.9 | |
sudo apt-add-repository ppa:brightbox/ruby-ng | |
sudo apt-get update | |
sudo apt-get install ruby2.3 ruby2.3-dev | |
#Lets setup veewee now: | |
git clone https://github.com/jedi4ever/veewee.git | |
cd veewee | |
gem2.3 install bundler | |
bundle install | |
#Add this for easier use: REPLACE /path/to/ with your own path where veewee/Gemfile is located | |
echo "alias veewee='env RBENV_VERSION=2.3.0 BUNDLE_GEMFILE=/path/to/veewee/Gemfile bundle exec veewee'" >> ~/.bash_profile | |
echo "alias veewee='env RBENV_VERSION=2.3.0 BUNDLE_GEMFILE=/path/to/veewee/Gemfile bundle exec veewee'" >> ~/.bashrc # i personally use .bashrc instead of .bash_profile | |
#The above problem is not encountered if you install via rbenv but i dont want to setup another thing just for this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment