From d8b4cdb8c6b14e4c8ea29617027416e991f97e10 Mon Sep 17 00:00:00 2001 From: Ilya Sabanin Date: Mon, 13 Sep 2010 11:48:18 +0800 Subject: [PATCH] Updated README, bumped version number to 0.8.0. --- README.rdoc | 3 +-- VERSION | 2 +- postmark.gemspec | 14 ++++++++++---- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.rdoc b/README.rdoc index 1242cb4..a8b1d3d 100644 --- a/README.rdoc +++ b/README.rdoc @@ -58,7 +58,6 @@ To use SSL encryption when sending email configure the library as follows: Postmark.secure = true - == Requirements The gem relies on TMail or Mail for building the message. You will also need postmark account, server and sender signature set up to use it. @@ -86,4 +85,4 @@ http://developer.postmarkapp.com == Copyright -Copyright (c) 2009 Wildbit LLC. See LICENSE for details. +Copyright (c) 2010 Wildbit LLC. See LICENSE for details. diff --git a/VERSION b/VERSION index 39e898a..a3df0a6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.1 +0.8.0 diff --git a/postmark.gemspec b/postmark.gemspec index 6d554bf..a700d59 100644 --- a/postmark.gemspec +++ b/postmark.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{postmark} - s.version = "0.7.0" + s.version = "0.8.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Petyo Ivanov"] - s.date = %q{2010-04-12} + s.date = %q{2010-09-13} s.description = %q{Ruby gem for sending emails through http://postmarkapp.com HTTP API. It relieas on TMail::Mail for message construction.} s.email = %q{underlog@gmail.com} s.extra_rdoc_files = [ @@ -17,9 +17,12 @@ Gem::Specification.new do |s| "README.rdoc" ] s.files = [ - ".document", + ".bundle/config", + ".document", ".gitignore", ".rake_tasks", + "Gemfile", + "Gemfile.lock", "LICENSE", "README.rdoc", "Rakefile", @@ -27,10 +30,13 @@ Gem::Specification.new do |s| "features/postmark.feature", "features/step_definitions/postmark_steps.rb", "features/support/env.rb", + "init.rb", + "lib/mail/postmark.rb", "lib/postmark.rb", "lib/postmark/bounce.rb", "lib/postmark/http_client.rb", "lib/postmark/json.rb", + "lib/postmark/mail_message_extension.rb", "lib/postmark/response_parsers/active_support.rb", "lib/postmark/response_parsers/json.rb", "lib/postmark/response_parsers/yajl.rb", @@ -50,7 +56,7 @@ Gem::Specification.new do |s| } s.rdoc_options = ["--charset=UTF-8"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.6} + s.rubygems_version = %q{1.3.5} s.summary = %q{Ruby gem for sending emails through http://postmarkapp.com HTTP API} s.test_files = [ "spec/bounce_spec.rb",