Class: Guard::Bundler
- Inherits:
-
Plugin
- Object
- Plugin
- Guard::Bundler
show all
- Defined in:
- lib/guard/bundler.rb,
lib/guard/bundler/verify.rb,
lib/guard/bundler/notifier.rb
Defined Under Namespace
Classes: Notifier, Verify
Constant Summary
collapse
- DEFAULT_LOCKFILE =
'Gemfile.lock'
Instance Method Summary
collapse
Instance Method Details
#cli? ⇒ Boolean
34
35
36
|
# File 'lib/guard/bundler.rb', line 34
def cli?
!!options[:cli]
end
|
#reload ⇒ Object
18
19
20
|
# File 'lib/guard/bundler.rb', line 18
def reload
refresh_bundle
end
|
#run_all ⇒ Object
22
23
24
|
# File 'lib/guard/bundler.rb', line 22
def run_all
refresh_bundle
end
|
#run_on_additions(paths = []) ⇒ Object
26
27
28
|
# File 'lib/guard/bundler.rb', line 26
def run_on_additions(paths = [])
refresh_bundle
end
|
#run_on_modifications(paths = []) ⇒ Object
30
31
32
|
# File 'lib/guard/bundler.rb', line 30
def run_on_modifications(paths = [])
refresh_bundle
end
|
#start ⇒ Object
14
15
16
|
# File 'lib/guard/bundler.rb', line 14
def start
refresh_bundle
end
|