Class: Guard::CocoaPods::Notifier

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

Class Method Summary collapse

Class Method Details

.guard_image(result) ⇒ Object

failed | success



17
18
19
20
21
22
23
# File 'lib/guard/cocoapods/notifier.rb', line 17

def self.guard_image(result)
  icon = if result
    :success
  else
    :failed
  end
end

.guard_message(result, duration) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/guard/cocoapods/notifier.rb', line 5

def self.guard_message(result, duration)
  case result
  when 'up-to-date'
    "Podfile is already up-to-date"
  when true
    "Podfile has been installed\nin %.1f seconds." % [duration]
  else
    "Podfile can't be installed.\nPlease check this manually."
  end
end

.notify(result, duration) ⇒ Object



25
26
27
28
29
30
# File 'lib/guard/cocoapods/notifier.rb', line 25

def self.notify(result, duration)
  message = guard_message(result, duration)
  image   = guard_image(result)

  ::Guard::Notifier.notify(message, :title => 'pod install', :image => image)
end