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 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.3.x & RSpec 2.0.x
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
 
@@ -33,6 +33,7 @@ module Guard
33
33
 
34
34
  cmd_parts << "--drb" if options[:drb] == true
35
35
  cmd_parts << "--color" if options[:color] != false
36
+ cmd_parts << "--fail-fast" if options[:fail_fast] == true
36
37
 
37
38
  cmd_parts << paths.join(' ')
38
39
  cmd_parts.join(" ")
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module RSpecVersion
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
5
5
  end
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: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 6
10
- version: 0.1.6
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: 13
61
+ hash: 11
62
62
  segments:
63
63
  - 2
64
- - 0
65
64
  - 1
66
- version: 2.0.1
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)