summaryrefslogtreecommitdiff
path: root/TROUBLESHOOT.md
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2015-04-29 13:51:11 -0700
committerelijah <elijah@riseup.net>2015-04-29 13:51:11 -0700
commite99856e5338424b36884e21db1f1399f4753ab3a (patch)
tree1e11e8b27c63f848a876f8f5dfca2e3b4eb5deb7 /TROUBLESHOOT.md
parent73fd6f5ef05adf5abdb31bcca4377c0ee7ca052b (diff)
clean up docs
Diffstat (limited to 'TROUBLESHOOT.md')
-rw-r--r--TROUBLESHOOT.md46
1 files changed, 0 insertions, 46 deletions
diff --git a/TROUBLESHOOT.md b/TROUBLESHOOT.md
deleted file mode 100644
index f3db006..0000000
--- a/TROUBLESHOOT.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# Troubleshooting #
-
-Here are some less common issues you might run into when installing Leap Web.
-
-## Cannot find Bundler ##
-
-### Error Messages ###
-
-`bundle: command not found`
-
-### Solution ###
-
-Make sure bundler is installed. `gem list bundler` should list `bundler`.
-You also need to be able to access the `bundler` executable in your PATH.
-
-## Outdated version of rubygems ##
-
-### Error Messages ###
-
-`bundler requires rubygems >= 1.3.6`
-
-### Solution ###
-
-`gem update --system` will install the latest rubygems
-
-## Missing development tools ##
-
-Some required gems will compile C extensions. They need a bunch of utils for this.
-
-### Error Messages ###
-
-`make: Command not found`
-
-### Solution ###
-
-Install the required tools. For linux the `build-essential` package provides most of them. For Mac OS you probably want the XCode Commandline tools.
-
-## Missing libraries and headers ##
-
-Some gem dependencies might not compile because they lack the needed c libraries.
-
-### Solution ###
-
-Install the libraries in question including their development files.
-
-