diff --git a/Gemfile.lock b/Gemfile.lock index 7e856b6..0cc6a04 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - emailable (4.0.0) + emailable (4.0.1) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index fb4e81f..23d279a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Emailable Ruby Library +[![Gem Version](https://badge.fury.io/rb/emailable.svg)](https://rubygems.org/gems/emailable) [![Build Status](https://app.travis-ci.com/emailable/emailable-ruby.svg)](https://app.travis-ci.com/emailable/emailable-ruby) [![Maintainability](https://api.codeclimate.com/v1/badges/e7eef54e491adec95e6d/maintainability)](https://codeclimate.com/github/emailable/emailable-ruby/maintainability) diff --git a/lib/emailable/resources/batch_status.rb b/lib/emailable/resources/batch_status.rb index 0fd742a..b63dc4c 100644 --- a/lib/emailable/resources/batch_status.rb +++ b/lib/emailable/resources/batch_status.rb @@ -1,7 +1,7 @@ module Emailable class BatchStatus < APIResource attr_accessor :emails, :id, :message, :reason_counts, :total_counts, - :processed, :total + :processed, :total, :download_file def complete? message.include?('completed') diff --git a/lib/emailable/version.rb b/lib/emailable/version.rb index 9b3914d..930a9f5 100644 --- a/lib/emailable/version.rb +++ b/lib/emailable/version.rb @@ -1,3 +1,3 @@ module Emailable - VERSION = '4.0.0' + VERSION = '4.0.1' end