guard-rspec 0.5.9 → 0.5.10

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -111,7 +111,7 @@ Former `:color`, `:drb`, `:fail_fast` and `:formatter` options are thus deprecat
111
111
  :all_after_pass => false # run all specs after changed specs pass, default: true
112
112
  :all_on_start => false # run all the specs at startup, default: true
113
113
  :keep_failed => false # keep failed specs until they pass, default: true
114
- :run_all => { :cli => "-p" } # override any option when running all specs
114
+ :run_all => { :cli => "-p" } # cli arguments to use when running all specs, default: same as :cli
115
115
  :spec_paths => ["spec"] # specify an array of paths that contain spec files
116
116
  ```
117
117
 
@@ -4,13 +4,10 @@ guard 'rspec', :version => 2 do
4
4
  watch('spec/spec_helper.rb') { "spec" }
5
5
 
6
6
  # Rails example
7
- watch(%r{^spec/.+_spec\.rb$})
8
7
  watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
9
8
  watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
10
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
11
9
  watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
12
10
  watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
13
- watch('spec/spec_helper.rb') { "spec" }
14
11
  watch('config/routes.rb') { "spec/routing" }
15
12
  watch('app/controllers/application_controller.rb') { "spec/controllers" }
16
13
  # Capybara request specs
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module RSpecVersion
3
- VERSION = "0.5.9"
3
+ VERSION = "0.5.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9
4
+ version: 0.5.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-07 00:00:00.000000000Z
12
+ date: 2011-12-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard
16
- requirement: &70118514647500 !ruby/object:Gem::Requirement
16
+ requirement: &70312609747500 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.8.4
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70118514647500
24
+ version_requirements: *70312609747500
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: bundler
27
- requirement: &70118514646920 !ruby/object:Gem::Requirement
27
+ requirement: &70312609747040 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '1.0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70118514646920
35
+ version_requirements: *70312609747040
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rspec
38
- requirement: &70118514646100 !ruby/object:Gem::Requirement
38
+ requirement: &70312609746580 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '2.7'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70118514646100
46
+ version_requirements: *70312609746580
47
47
  description: Guard::RSpec automatically run your specs (much like autotest).
48
48
  email:
49
49
  - thibaud@thibaud.me
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: 1.3.6
82
82
  requirements: []
83
83
  rubyforge_project: guard-rspec
84
- rubygems_version: 1.8.10
84
+ rubygems_version: 1.8.12
85
85
  signing_key:
86
86
  specification_version: 3
87
87
  summary: Guard gem for RSpec