guard-rspec 4.0.0 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 72a879771ebb51c3975137af34723ce17a908abe
4
- data.tar.gz: e6f562c2149e0d7a7312831a706565be60bdc018
3
+ metadata.gz: 40496bf6ef8ba84224968ebd298562605c0ad226
4
+ data.tar.gz: 5747619172ea0927985b5cc998b6f7d7a8a39676
5
5
  SHA512:
6
- metadata.gz: ea1fd12cd64193718d5be568ff09ede36a6dafadf4f30a3bfa3050842aa73b1e0ccdc036985a513c0a6898328d0fcf28b997ce84423efba52180cef5e5ddb095
7
- data.tar.gz: ce1aa592392b715825347bbcc3c95c85eb3e795488c3aeb37f650583524a3784fd8a127e3a09bd31b100058a88d431f7c26c3d31d37fa8bd49c515defa7e1e38
6
+ metadata.gz: 79d69a9f9055cb91069312abcb69a9ee402b27063adf755a0a983f8b2135f562995290119611c48b7149601718c55ec7a6e4e5fc636e6d9cec702ade5bf87a3c
7
+ data.tar.gz: e63d157b63303d124b0e7912e75314a25500fcb2d87e5624341a2540f1f27365405045b1a1305de365f3f26e2d0542746567b06edb9fea7f46310ceef266b91e
data/README.md CHANGED
@@ -61,7 +61,7 @@ Please read [Guard doc](https://github.com/guard/guard#readme) for more informat
61
61
  Guard::RSpec 4.0 use now a more simple approach with the new `cmd` option that let you precisely define which rspec command will be launched on each run. As example if you want to support Spring with a custom formatter (progress by default) use:
62
62
 
63
63
  ``` ruby
64
- guard :rspec, cdm: 'spring rspec -f doc' do
64
+ guard :rspec, cmd: 'spring rspec -f doc' do
65
65
  # ...
66
66
  end
67
67
  ```
@@ -50,8 +50,8 @@ module Guard
50
50
  end
51
51
 
52
52
  def _without_bundler_env
53
- if defined?(Bundler)
54
- Bundler.with_clean_env { yield }
53
+ if defined?(::Bundler)
54
+ ::Bundler.with_clean_env { yield }
55
55
  else
56
56
  yield
57
57
  end
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module RSpecVersion
3
- VERSION = '4.0.0'
3
+ VERSION = '4.0.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibaud Guillaume-Gentil
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-11 00:00:00.000000000 Z
11
+ date: 2013-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard
@@ -147,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
147
  version: '0'
148
148
  requirements: []
149
149
  rubyforge_project:
150
- rubygems_version: 2.1.3
150
+ rubygems_version: 2.1.8
151
151
  signing_key:
152
152
  specification_version: 4
153
153
  summary: Guard gem for RSpec