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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6653c7b97c1d3f9db9413b41f9bc58e2c55c8a3172a0f894a35d59f926a25eee
4
- data.tar.gz: bbedeb96782350192b7eeab864d8e63b91d7724559928f6b63e3d870f833357c
3
+ metadata.gz: b3b6e765ade33aa1ba29426ca321ae56f54aaaae1b2d487837f6850cbe03956b
4
+ data.tar.gz: 99c54e22ba8fcd1d8d947338ae6bd00d10f3117a61a84100fb327a2040adcfbe
5
5
  SHA512:
6
- metadata.gz: 3ae9658cf071e08ced9232f133e2e08d9b22c7ddcaaf5524a7baca090c01f8046156d26084a0c231593db1878d0d7b994976dc0525075d7db02bdc0d965c6199
7
- data.tar.gz: 516dd0f98d7d09fe4752dfdcd341eeb7abba56bcdcd1ea8f1fa7dae779614bc2b600c19252803437847a3fc527ee9695962acb0731d8abbee4cb98899e26a52b
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.4.x, 2.5.x, 2.6.x, JRuby & Rubinius. See [`.travis-ci.yml`](https://github.com/guard/guard-bundler/blob/master/.travis.yml) for the exact versions.
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
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  module Guard
3
3
  module BundlerVersion
4
- VERSION = '3.0.0'
4
+ VERSION = '3.0.1'
5
5
  end
6
6
  end
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.exists?('Gemfile.lock') ? File.mtime('Gemfile.lock') : nil
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.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: 2019-12-23 00:00:00.000000000 Z
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.0.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: []