cupid 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -77,13 +77,13 @@ send_tracking_ids = et_translator.send_emails_to_lists({'email_id' => 'list_id',
77
77
  Puts this line into `Gemfile` then run `$ bundle`:
78
78
 
79
79
  ``` ruby
80
- gem 'cupid', '0.2.2'
80
+ gem 'cupid', '0.2.3'
81
81
  ```
82
82
 
83
83
  Or if you are old-school Rails 2 developer put this into `config/environment.rb` and run `$ rake gems:install`:
84
84
 
85
85
  ``` ruby
86
- config.gem 'cupid', :version => '0.2.2'
86
+ config.gem 'cupid', :version => '0.2.3'
87
87
  ```
88
88
 
89
89
  Or manually install cupid gem: `$ gem install cupid`
@@ -205,9 +205,9 @@ module Cupid
205
205
  def create_delete_email_object(email_id, account)
206
206
  '<Objects xsi:type="Email">' +
207
207
  '<Client>' +
208
- '<ID>' + account + '</ID>' +
208
+ '<ID>' + account.to_s + '</ID>' +
209
209
  '</Client>' +
210
- '<ID>' + email_id + '</ID>' +
210
+ '<ID>' + email_id.to_s + '</ID>' +
211
211
  '<ObjectID xsi:nil="true"/>' +
212
212
  '</Objects>'
213
213
  end
@@ -1,3 +1,3 @@
1
1
  module Cupid
2
- VERSION = '0.2.2'
2
+ VERSION = '0.2.3'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cupid
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 2
10
- version: 0.2.2
9
+ - 3
10
+ version: 0.2.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - gazay