guard-bundler 3.0.0 → 3.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 +4 -4
- data/README.md +1 -1
- data/lib/guard/bundler/version.rb +1 -1
- data/lib/guard/bundler.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3b6e765ade33aa1ba29426ca321ae56f54aaaae1b2d487837f6850cbe03956b
|
4
|
+
data.tar.gz: 99c54e22ba8fcd1d8d947338ae6bd00d10f3117a61a84100fb327a2040adcfbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc3b89f2c3f3e3e801d7f0a1a6d5a8db19825a2b07487c2855aa08b79a9c437e394980a877c9f79cc49938409f8def265a23f7f88d984ebc231c56e82984705c
|
7
|
+
data.tar.gz: 81a86bc609743cc64c0651b057c6b9d658f273c9314a3065fdfeead6ab7da77cc7f32522d6a2b01d97c2ea7799712e8d96fdcb8fcbe6a36c20efeabcf8735d28
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
Bundler guard allows to automatically & intelligently install/update bundle when needed.
|
6
6
|
|
7
7
|
* Compatible with Bundler 2.1.x
|
8
|
-
* Tested against the latest Ruby 2.
|
8
|
+
* Tested against the latest Ruby 2.7.x, 3.0.x, 3.1.x & 3.2.x. See [`.travis-ci.yml`](https://github.com/guard/guard-bundler/blob/master/.travis.yml) for the exact versions.
|
9
9
|
|
10
10
|
## Install
|
11
11
|
|
data/lib/guard/bundler.rb
CHANGED
@@ -54,7 +54,7 @@ module Guard
|
|
54
54
|
end
|
55
55
|
|
56
56
|
def bundle_check
|
57
|
-
gemfile_lock_mtime = File.
|
57
|
+
gemfile_lock_mtime = File.exist?('Gemfile.lock') ? File.mtime('Gemfile.lock') : nil
|
58
58
|
::Bundler.with_unbundled_env do
|
59
59
|
`bundle check`
|
60
60
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-bundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yann Lugrin
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard
|
@@ -76,7 +76,7 @@ homepage: https://rubygems.org/gems/guard-bundler
|
|
76
76
|
licenses:
|
77
77
|
- MIT
|
78
78
|
metadata: {}
|
79
|
-
post_install_message:
|
79
|
+
post_install_message:
|
80
80
|
rdoc_options: []
|
81
81
|
require_paths:
|
82
82
|
- lib
|
@@ -91,8 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
93
|
requirements: []
|
94
|
-
rubygems_version: 3.
|
95
|
-
signing_key:
|
94
|
+
rubygems_version: 3.1.6
|
95
|
+
signing_key:
|
96
96
|
specification_version: 4
|
97
97
|
summary: Guard gem for Bundler
|
98
98
|
test_files: []
|