mandrill_mailer 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- Zjg1NzY2YjZkNWZjZGJiYjdjNzNiNTdiZDEwZDE3NWU3MjAwM2U0MQ==
5
- data.tar.gz: !binary |-
6
- MzkyNDllYzdhM2JhNTQwODk1YWRmYzMzMTkyZmIxYzhmOGRmMGU5ZA==
2
+ SHA1:
3
+ metadata.gz: f3566de247b51759a56fc96545c27b53abdcbc3d
4
+ data.tar.gz: 4d197d553c5336dd8012555a7b30c6144b95c6e6
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZWZkYjIyYjM4YWExNjM2ZTRkYjY2MTBiMTdlNDIwMDAwYjRiNjE1MGFmZmY0
10
- MzJmYzVlMDcyOGVhN2QwYWY5NDNhZDUzN2JkNTYxZDAwNWM2ZTNjMGJjNmE0
11
- YTY4NjVjZmI5ZDBjMzhmYWI1OTlkZWY4MTgzMzE5Y2IzY2M5YTk=
12
- data.tar.gz: !binary |-
13
- YWJlM2IzNzQ2ZDhlNjNhNDU1NGM1NjI0NzllYjUyN2RlZTQ2YzE0M2YwNGVm
14
- ZTAyNTgzZWYxNDM1YmU0NDFjMjQwNTMyYTQ2MTAzZTI3MTQ1MjE5NjI2Nzdl
15
- NDJiNjNhZjMxMzgxMGJiZDk2NDhiNjM0MGQ4M2JkMDkwMGY1ODM=
6
+ metadata.gz: db36a12377d1db8420e65176ac5dd22fe5401b0fd13277598306d25e1ab0fa6249e7bc0a0d42f0c13fb4b22023d1ab02a213ec076ade23e03ed33973c1e12c0a
7
+ data.tar.gz: 93a04dfe2996c1680d24f9b83842d861a48c1fe9dbb2652aeca737de3b61f8b2e0a3dbd7565b095b9c2e7de5fbbc6eb5646f45f3237f5cbd33f31a7545c0d482
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.5.2
2
+ - [IMPROVEMENT] Allow the mandrill api gem to be more flexible in the accepted version
3
+ which allows for the json gem to be updated internally.
4
+
1
5
  # 0.5.0
2
6
  - [IMPROVEMENT] Made the file attachment and image apis compatible with mandrill api doc syntax
3
7
 
data/README.md CHANGED
@@ -174,7 +174,7 @@ class InvitationMailer < MandrillMailer::MessageMailer
174
174
  # in this example `invitation.invitees` is an Array
175
175
  invitees = invitation.invitees.map { |invitee| { email: invitee.email, name: invitee.name } }
176
176
 
177
- # no need to set up tempalte and template_content attributes, set up the html and text directly
177
+ # no need to set up template and template_content attributes, set up the html and text directly
178
178
  mandrill_mail subject: I18n.t('invitation_mailer.invite.subject'),
179
179
  to: invitees,
180
180
  # to: invitation.email,
@@ -318,7 +318,7 @@ end
318
318
  UpdateEmailJob.perform_async(<user_id>)
319
319
  ```
320
320
 
321
- Or depending on how up to date things are, try adding the following to to `config/initializers/mandrill_mailer_sidekiq.rb`
321
+ Or depending on how up to date things are, try adding the following to `config/initializers/mandrill_mailer_sidekiq.rb`
322
322
 
323
323
  ```ruby
324
324
  ::MandrillMailer::TemplateMailer.extend(Sidekiq::Extensions::ActionMailer)
@@ -1,3 +1,3 @@
1
1
  module MandrillMailer
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,83 +1,83 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mandrill_mailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Rensel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-23 00:00:00.000000000 Z
11
+ date: 2015-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mandrill-api
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 1.0.9
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.0.9
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: pry
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ! '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ! '>='
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  description: Transactional Mailer for Mandrill
@@ -87,8 +87,8 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
- - .gitignore
91
- - .rspec
90
+ - ".gitignore"
91
+ - ".rspec"
92
92
  - CHANGELOG.md
93
93
  - Gemfile
94
94
  - README.md
@@ -117,17 +117,17 @@ require_paths:
117
117
  - lib
118
118
  required_ruby_version: !ruby/object:Gem::Requirement
119
119
  requirements:
120
- - - ! '>='
120
+ - - ">="
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
123
  required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  requirements:
125
- - - ! '>='
125
+ - - ">="
126
126
  - !ruby/object:Gem::Version
127
127
  version: '0'
128
128
  requirements: []
129
129
  rubyforge_project:
130
- rubygems_version: 2.1.9
130
+ rubygems_version: 2.4.6
131
131
  signing_key:
132
132
  specification_version: 4
133
133
  summary: Transactional Mailer for Mandrill