Sha256: 8a5dc6baea0539bed13cafbe2e5720055a778ac933dc35af5180f34e765134bf
Contents?: true
Size: 1.2 KB
Versions: 3
Compression:
Stored size: 1.2 KB
Contents
require "gem_watch" # Command options class for the command line interface. It is initialized with Defaults values. class GemWatch::CommandOptions attr_accessor :smtp_host attr_accessor :smtp_port attr_accessor :email_recipients attr_accessor :email_subject attr_accessor :email_from attr_accessor :stdout attr_accessor :check_update_on # Defaults values for command line interface. Defaults = { # SMTP Part :smtp_host => 'localhost', :smtp_port => 25, # Email part :email_recipients => [], :email_subject => "GemWatch has found something to report", :email_from => "gemwatch@example.com", # Checks part :check_update_on => :all, # General part :stdout => true } # Initialize a new object with Defaults values. def initialize Defaults.each {|key, value| send "#{key}=", value} end # Overrides the default attr_accessor to split a string of multiple email addresses in a array. def email_recipients=(recipients) @email_recipients = case recipients.class.name when 'Array' recipients when 'String' recipients.split(',').collect {|email| email.strip} end @stdout = @email_recipients.empty? end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gem_watch-0.1.2 | lib/gem_watch/command_options.rb |
gem_watch-0.1.0 | lib/gem_watch/command_options.rb |
gem_watch-0.1.1 | lib/gem_watch/command_options.rb |