You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd /path/to/repo
gem install bundler
bundle install
Now I just do bejs to start building the site.
Probably needed a bundle install in the repo's folder at some point too.
Basically, OSX is weird about Ruby. I'm pretty sure it doesn't let you modify your builtin Ruby install, so I used homebrew to install a newer version and then chruby (https://github.com/postmodern/chruby) to switch between Ruby versions. bundler is a tool that will install all of the requirements for a given Ruby "package" (i.e., the website, based on its Gemfile)
The text was updated successfully, but these errors were encountered:
Here are my notes from the docathon:
In my ~/.bash_profile I added:
Then in the terminal again:
Now I just do bejs to start building the site.
Probably needed a bundle install in the repo's folder at some point too.
Basically, OSX is weird about Ruby. I'm pretty sure it doesn't let you modify your builtin Ruby install, so I used homebrew to install a newer version and then chruby (https://github.com/postmodern/chruby) to switch between Ruby versions. bundler is a tool that will install all of the requirements for a given Ruby "package" (i.e., the website, based on its Gemfile)
The text was updated successfully, but these errors were encountered: