hominid 2.1.6 → 2.1.7

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.6
1
+ 2.1.7
data/hominid.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{hominid}
8
- s.version = "2.1.6"
8
+ s.version = "2.1.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Brian Getting", "Michael Str\303\274der"]
@@ -580,8 +580,12 @@ module Hominid
580
580
  # Returns:
581
581
  # True if successful.
582
582
  #
583
- def send_test(campaign_id, emails = {}, send_type = '')
584
- call("campaignSendTest", campaign_id, emails, send_type)
583
+ def send_test(campaign_id, emails = {}, send_type = nil)
584
+ if send_type
585
+ call("campaignSendTest", campaign_id, emails, send_type)
586
+ else
587
+ call("campaignSendTest", campaign_id, emails)
588
+ end
585
589
  end
586
590
 
587
591
  # Get the URL to a customized VIP Report for the specified campaign and optionally send an email
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hominid
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
- - 6
10
- version: 2.1.6
9
+ - 7
10
+ version: 2.1.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brian Getting