Index: README.rst
===================================================================
--- README.rst	(revision 21)
+++ README.rst	(revision 24)
@@ -12,11 +12,7 @@
 ------------
 
-You can install pyenvjasmine using pip_ or easy_install_::
+You can install pyenvjasmine using pip_::
 
   pip install pyenvjasmine
-
-::
-
-  easy_install pyenvjasmine
 
 Or you can grab the latest sources and install it from there::
@@ -66,11 +62,11 @@
 
     import unittest
-    from pyenvjasmine.runner import TestRunner
+    from pyenvjasmine.runner import Runner
 
     class JavaScriptTests(unittest.TestCase):
         def test_my_javascript(self):
-            runner = TestRunner(
-                      testdir='/path/to/my/testdir',
-                      configfile='relative/path/to/configfile')
+            runner = Runner(
+                testdir='/path/to/my/testdir',
+                configfile='relative/path/to/configfile')
             runner.run(capture_output=False)
 
@@ -81,11 +77,11 @@
 
     import unittest
-    from pyenvjasmine.runner import TestRunner
+    from pyenvjasmine.runner import Runner
 
     class JavaScriptTests(unittest.TestCase):
         def test_my_javascript_no_output(self):
-            runner = TestRunner(
-                      testdir='/path/to/my/testdir',
-                      configfile='relative/path/to/configfile')
+            runner = Runner(
+                testdir='/path/to/my/testdir',
+                configfile='relative/path/to/configfile')
             res = runner.run(capture_output=True)
             lines = res.splitlines()
Index: pyenvjasmine/tests/test_runner.py
===================================================================
--- pyenvjasmine/tests/test_runner.py	(revision 10)
+++ pyenvjasmine/tests/test_runner.py	(revision 24)
@@ -2,5 +2,5 @@
 import os
 
-from pyenvjasmine.runner import TestRunner
+from pyenvjasmine.runner import Runner
 
 
@@ -16,5 +16,5 @@
         Test the runner, using default values (which wil run the demo specs)
         """
-        jstests = TestRunner()
+        jstests = Runner()
         output = jstests.run()
         # output is the resulting stdout from a subprocess call, which is a
@@ -31,5 +31,5 @@
         conf_file = os.path.join(sample, 'configfile.js')
         envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
-        jstests = TestRunner(
+        jstests = Runner(
             rootdir=envjasmine_dir,
             testdir=sample,
@@ -56,5 +56,5 @@
         browser_conf_file = os.path.join(sample, 'browser.configfile.js')
         envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
-        jstests = TestRunner(
+        jstests = Runner(
             rootdir=envjasmine_dir,
             testdir=sample,
@@ -75,5 +75,5 @@
         browser_conf_file = os.path.join(sample, 'browser.configfile.js')
         envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
-        jstests = TestRunner(
+        jstests = Runner(
             rootdir=envjasmine_dir,
             testdir=sample,
@@ -105,5 +105,5 @@
         Running a test without capturing output
         """
-        jstests = TestRunner()
+        jstests = Runner()
         output = jstests.run(capture_output=False)
         self.assertEqual(output, None)
Index: setup.py
===================================================================
--- setup.py	(revision 22)
+++ setup.py	(revision 24)
@@ -2,5 +2,5 @@
 from distutils.core import setup
 
-version = '0.1.6'
+version = '0.1.7'
 
 requires = [
