guard-rspec 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +2 -1
- data/lib/guard/rspec/runner.rb +1 -0
- data/lib/guard/rspec/version.rb +1 -1
- metadata +6 -6
data/README.rdoc
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
RSpec guard allows to automatically & intelligently launch specs when files are modified.
|
4
4
|
|
5
|
-
- Compatible with RSpec 1.
|
5
|
+
- Compatible with RSpec 1.x & RSpec 2.x
|
6
6
|
- Tested on Ruby 1.8.6, 1.8.7 & 1.9.2.
|
7
7
|
|
8
8
|
== Install
|
@@ -65,6 +65,7 @@ Other available options:
|
|
65
65
|
:bundler => false # don't use "bundle exec"
|
66
66
|
:rvm => ['1.8.7', '1.9.2'] # directly run your specs on multiple ruby
|
67
67
|
:formatter => "instafail" # show failing specs instantly
|
68
|
+
:fail_fast => true # RSpec 2.1+ only
|
68
69
|
|
69
70
|
== Development
|
70
71
|
|
data/lib/guard/rspec/runner.rb
CHANGED
data/lib/guard/rspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 7
|
10
|
+
version: 0.1.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Thibaud Guillaume-Gentil
|
@@ -58,12 +58,12 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
hash:
|
61
|
+
hash: 11
|
62
62
|
segments:
|
63
63
|
- 2
|
64
|
-
- 0
|
65
64
|
- 1
|
66
|
-
|
65
|
+
- 0
|
66
|
+
version: 2.1.0
|
67
67
|
type: :development
|
68
68
|
version_requirements: *id003
|
69
69
|
description: Guard::RSpec automatically run your specs (much like autotest)
|