move Gemfile info to _scripts directory
diff --git a/README.md b/README.md
index 2399f25..6cac8b0 100644
--- a/README.md
+++ b/README.md
@@ -29,10 +29,12 @@
 
 At this point, close your shell session and start a new one, to get the new
 environment that RVM has configured. Now change directory to the location where
-you checked out your repository; RVM should detect its configuration inside
-`Gemfile` and try to configure itself. Most likely it will report that the
-required version of Ruby is not installed; it will show the command that you
-need to run to install the correct version. Follow the instructions.
+you checked out your repository, and then to the `_scripts` subdirectory.
+
+RVM should detect its configuration inside `Gemfile` and try to configure itself. 
+Most likely it will report that the required version of Ruby is not installed; 
+it will show the command that you need to run to install the correct version. 
+Follow these instructions.
 
 Once the correct version of Ruby is installed, change to your home directory
 (`cd ~`) and then change back to the repository again (`cd -`). This will cause
@@ -42,11 +44,14 @@
 
     sudo apt-get install libxslt-dev libxml2-dev
 
-Finally, run this command to install all the required Gems in the correct
-versions:
+Finally, run this command inside `_scripts` to install all the required Gems 
+in the correct versions:
 
     bundle install
 
+Anytime you need to reset your Ruby environment for jekyll to run correctly,
+return to the `_scripts` directory and re-run the above command.
+
 
 Building and previewing the website
 -----------------------------------
diff --git a/Gemfile b/_scripts/Gemfile
similarity index 100%
rename from Gemfile
rename to _scripts/Gemfile
diff --git a/Gemfile.lock b/_scripts/Gemfile.lock
similarity index 100%
rename from Gemfile.lock
rename to _scripts/Gemfile.lock