Skip to content

Instantly share code, notes, and snippets.

@kristenmills
Last active August 29, 2015 13:57
Show Gist options
  • Save kristenmills/9689631 to your computer and use it in GitHub Desktop.
Save kristenmills/9689631 to your computer and use it in GitHub Desktop.
Setting Up Rails for ThoughtShare

Windows

Option 1 is the easier version but either will work

Option 1:

  1. Got to railsinstaller.org
  2. Navigate to the ThoughtShare directory in cmd
  3. Run bundle install

Option 2:

  1. Go to rubyinstaller.org/downloads
  2. Download Ruby 1.9.3 and install Ruby using the executable (Make sure ruby is added to your path)
  3. Download Ruby Development Kit for 1.9.3 and extract it to a PERMANENT location
  4. Using cmd, navigate to wherever you extracted dev kit to.
  5. Run ruby dk.rb init
  6. Run ruby dk.rb install
  7. Navigate to the ThoughtShare directory in cmd
  8. Run gem install bundler
  9. Run bundle install

Mac

  1. Got to railsinstaller.org
  2. Navigate to the ThoughtShare directory in your terminal
  3. Run bundle install

Linux

  1. Install ruby 1.9.3 using rbenv, rvm, or your package manager of choice.
  2. Navigate to the ThoughtShare directory in your terminal
  3. Run gem install bundler
  4. Run bundle install
@kristenmills
Copy link
Author

Nope it's in the gemfile so bundle install should be fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment