Sha256: d48d67dc282dab266d9e3250cc3d02d20f041bbce2f11563f5b1b36019320106
Contents?: true
Size: 504 Bytes
Versions: 6
Compression:
Stored size: 504 Bytes
Contents
require 'erb' MSG_TEMPLATE = File.dirname(__FILE__) + '/email.erb' SEND_TO = %w(thin-ruby@googlegroups.com eventmachine-talk@rubyforge.org Rubymtl@lists.artengine.ca ruby-talk@ruby-lang.org) desc 'Generate a template for the new version annoucement' task :ann do msg = ERB.new(File.read(MSG_TEMPLATE)).result(binding) body = <<END_OF_MESSAGE To: #{SEND_TO.join(', ')} Subject: [ANN] Thin #{Thin::VERSION::STRING} #{Thin::VERSION::CODENAME} released #{msg} END_OF_MESSAGE puts body end
Version data entries
6 entries across 6 versions & 1 rubygems