Class: Guard::CocoaPods

Inherits:
Guard
  • Object
show all
Defined in:
lib/guard/cocoapods.rb,
lib/guard/cocoapods/notifier.rb

Defined Under Namespace

Classes: Notifier

Constant Summary collapse

VERSION =
'0.0.1'

Instance Method Summary collapse

Instance Method Details

#cli?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/guard/cocoapods.rb', line 30

def cli?
  !!options[:cli]
end

#reloadObject



14
15
16
# File 'lib/guard/cocoapods.rb', line 14

def reload
  refresh_podfile
end

#run_allObject



18
19
20
# File 'lib/guard/cocoapods.rb', line 18

def run_all
  refresh_podfile
end

#run_on_additions(paths = []) ⇒ Object



22
23
24
# File 'lib/guard/cocoapods.rb', line 22

def run_on_additions(paths = [])
  refresh_podfile
end

#run_on_modifications(paths = []) ⇒ Object



26
27
28
# File 'lib/guard/cocoapods.rb', line 26

def run_on_modifications(paths = [])
  refresh_podfile
end

#startObject



10
11
12
# File 'lib/guard/cocoapods.rb', line 10

def start
  refresh_podfile
end