autotest-cucumber-notification 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -2
- data/README.rdoc +1 -1
- data/lib/autotest-cucumber-notification/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -19,8 +19,8 @@ of your Cucumber features.
|
|
19
19
|
2. Edit your `.autotest` to include the module. If you downloaded it to your
|
20
20
|
home folder, do something like this:
|
21
21
|
|
22
|
-
require 'rubygems'
|
23
|
-
require 'cucumber-
|
22
|
+
require 'rubygems' # for ruby versions prior to 1.9
|
23
|
+
require 'autotest-cucumber-notification'
|
24
24
|
|
25
25
|
3. That's it. Just run Autotest with your Cucumber features like normal.
|
26
26
|
|
data/README.rdoc
CHANGED
@@ -18,7 +18,7 @@ This is a module for autotest that will provide notification for the results of
|
|
18
18
|
2. Edit your .autotest to include the module. If you downloaded it to your
|
19
19
|
home folder, do something like this:
|
20
20
|
|
21
|
-
require 'rubygems'
|
21
|
+
require 'rubygems' # for rubies prior to 1.9
|
22
22
|
require 'autotest-cucumber-notification'
|
23
23
|
|
24
24
|
3. That's it. Just run Autotest with your Cucumber features like normal.
|