README.markdown in snapdragon-2.0.0 vs README.markdown in snapdragon-3.0.0

- old
+ new

@@ -1,8 +1,8 @@ # Snapdragon -**A command-line [Jasmine](http://pivotal.github.io/jasmine/) (JavaScript) test runner built with developer workflow in mind.** +**A command-line [Jasmine](http://jasmine.github.io) (JavaScript) test runner built with developer workflow in mind.** ## Installation Add this line to your application's Gemfile: @@ -50,11 +50,11 @@ follow the steps below to get started. 1. Install [Snapdragon](http://github.com/reachlocal/snapdragon) and [PhantomJS](http://phantomjs.org/) as outlined above. -2. Create a simple [Jasmine](http://pivotal.github.io/jasmine/) spec file +2. Create a simple [Jasmine](http://jasmine.github.io) spec file `example/spec/hoopty_spec.js` with the following content. Note: the `// require_relative()` directive at the top of the file. This tells [Snapdragon](http://github.com/reachlocal/snapdragon) what implementation file(s) it needs to run the specs in this file. @@ -96,16 +96,16 @@ Finished in 0.001 seconds 1 example, 0 failures ``` Thats it, you now have [Snapdragon](http://github.com/reachlocal/snapdragon) -running a [Jasmine](http://pivotal.github.io/jasmine/) spec. +running a [Jasmine](http://jasmine.github.io) spec. ## Usage (snapdragon) The *snapdragon* command allows you to run your -[Jasmine](http://pivotal.github.io/jasmine/) specs from the command-line just +[Jasmine](http://jasmine.github.io) specs from the command-line just as you would with RSpec and other testing tools. The following are some usage examples. #### Run a specific describe/it block @@ -163,11 +163,11 @@ ``` ## Usage (snapdragon_server) The *snapdragon_server* command allows you to run your -[Jasmine](http://pivotal.github.io/jasmine/) specs in your browser. When this +[Jasmine](http://jasmine.github.io) specs in your browser. When this command is run it will launch the *snapdragon_server* and open your default browser to the proper URL to run your specified test suite. This is especially useful if you want to debug some JavaScript as your browser most likely has a JavaScript debugger built into it. A few examples of this commands usage follow. @@ -324,14 +324,14 @@ [freenode](http://freenode.net/). Feel free to join it and ask questions, make suggestions, talk with developers, or just hang out. ## The Back Story -If you have ever used [Jasmine](http://pivotal.github.io/jasmine/) for your +If you have ever used [Jasmine](http://jasmine.github.io) for your JavaScript BDD style testing framework I am sure you have run into the following issues just as I have. -1. Getting up and running with [Jasmine](http://pivotal.github.io/jasmine/) is +1. Getting up and running with [Jasmine](http://jasmine.github.io) is quite a pain and the examples of how to setup your SpecRunner.html are sparse. 2. Having to manually add the dependency files and spec files to the SpecRunner.html is a huge pain in the ass. 3. Limiting a test run to a specific spec file is near impossible with the