Class: GitRemoteMonitor::Notifier

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

Overview

The MIT License Copyright © 2009 Magnus Bergmark

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Instance Method Summary collapse

Constructor Details

#initializeNotifier

Returns a new instance of Notifier.



24
25
26
27
28
29
30
31
# File 'lib/git_remote_monitor/notifier.rb', line 24

def initialize()
  # TODO: Auto-discover notification systems and load the one the user have
  # For now, just use meow. REMEMBER: Remove 'meow' from the bin/ script when
  # this requirement changes here!
  
  require 'meow'
  @notifier = ::Meow.new('git-remote-monitor')
end

Instance Method Details

#notify_commits(name, branch_name, local_commits, remote_commits) ⇒ Object



33
34
35
36
37
38
# File 'lib/git_remote_monitor/notifier.rb', line 33

def notify_commits(name, branch_name, local_commits, remote_commits)
  message = get_message(local_commits, remote_commits)
  if message
    @notifier.notify("#{name} (#{branch_name})", message, :icon => "#{GitRemoteMonitor::PATH}/images/git-logo.png")
  end
end