Sha256: c14bbd495d3d80645692d27e5a9949a43566be28e9cbd1fcad2e9672cd35ce01

Contents?: true

Size: 577 Bytes

Versions: 4

Compression:

Stored size: 577 Bytes

Contents

require 'damagecontrol/publisher/base'

module DamageControl
  module Publisher
    class Irc < Base
      #register self
    
      ann :description => "IRC server"
      attr_reader :server

      ann :description => "IRC notification channel"
      attr_reader :channel

      ann :description => "DamageControl's IRC nick"
      attr_reader :nick
    
      def initialize
        @server = "irc.codehaus.org"
        @channel = "#xxxxxx"
        @nick = "dcontrol"
      end

      def name
        "IRC"
      end    

      def publish(build)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
damagecontrol-0.5.0.1391 lib/damagecontrol/publisher/irc.rb
damagecontrol-0.5.0.1392 lib/damagecontrol/publisher/irc.rb
damagecontrol-0.5.0.1393 lib/damagecontrol/publisher/irc.rb
damagecontrol-0.5.0.1404 lib/damagecontrol/publisher/irc.rb