guard-bundler 2.1.0 → 2.2.0

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
- SHA1:
3
- metadata.gz: 374242e51e101d39f466f2304e42db3bb9e3327f
4
- data.tar.gz: a915124e35854bb879515c332309d7107cfa3fa6
2
+ SHA256:
3
+ metadata.gz: 2b66183d3309eccdeab03c44490e9a83924624a4acfed90f1c0e191c55f79ca2
4
+ data.tar.gz: d61f7d9da443f2f1d51cb9a24cdb2ab4c2881e35eb6cb98754fa97e2fa095c46
5
5
  SHA512:
6
- metadata.gz: 48fd0897ccd12f95e134e646758a2ba0cf0c03ef4857a019acba3c09b6746fc46e14fc863cf5dcdf18dd767aeee1783d75cf6d1ff843284400c06fc6388b09cd
7
- data.tar.gz: 027e90d2a3b52932db54a83e69de9fc55262c1227ca2c9cbaed8137da4b8d89baf7e647c2cd96403e00268f0dad6c0631c31a656d2ae9fb9d210c6a658f432c5
6
+ metadata.gz: 9a491c2afa9accfa967c5f764f18a51fe2951ce5d1d1ddbac83df99c7824b7438f51690b08a4eb6811566272362e6061f4992fcaac1c7fe01f13947f582d042a
7
+ data.tar.gz: b3656b1b66412714af886c4427bf3782674c0fdda0a640437a797806e7452c7194c937bb5353aafaf583577e518225232ab58bf07ada324e18af72535e4fb27d
data/README.md CHANGED
@@ -31,15 +31,7 @@ Please read the [Guard usage doc](https://github.com/guard/guard#readme)
31
31
 
32
32
  Guard::Bundler plugin can be really adapted to all kind of projects.
33
33
 
34
- ### Standard RubyGem project
35
-
36
- ```ruby
37
- guard :bundler do
38
- watch('Gemfile')
39
- # Uncomment next line if Gemfile contain `gemspec' command
40
- # watch(/^.+\.gemspec/)
41
- end
42
- ```
34
+ You can tweak the default Guardfile template (created by `guard init bundler`) if you need to watch files other than the Gemfile or *.gemspec (or if they are in different paths).
43
35
 
44
36
  Please read the [Guard usage doc](https://github.com/guard/guard#readme) for more information about the Guardfile DSL.
45
37
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  module Guard
3
3
  module BundlerVersion
4
- VERSION = '2.1.0'
4
+ VERSION = '2.2.0'
5
5
  end
6
6
  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: 2.1.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yann Lugrin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-11 00:00:00.000000000 Z
11
+ date: 2019-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard
@@ -42,16 +42,16 @@ dependencies:
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '1.0'
47
+ version: 1.3.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '1.0'
54
+ version: 1.3.0
55
55
  description: Guard::Bundler automatically install/update your gem bundle when needed
56
56
  email:
57
57
  - yann.lugrin@sans-savoir.net
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  version: '0'
87
87
  requirements: []
88
88
  rubyforge_project:
89
- rubygems_version: 2.4.2
89
+ rubygems_version: 2.7.6
90
90
  signing_key:
91
91
  specification_version: 4
92
92
  summary: Guard gem for Bundler