-
Notifications
You must be signed in to change notification settings - Fork 23
/
hubspot-mailer.gemspec
38 lines (36 loc) · 1.94 KB
/
hubspot-mailer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Gem::Specification.new do |s|
s.name = "hubspot-mailer".freeze
s.version = "0.0.2"
s.licenses = ['MIT']
s.date = "2018-12-09".freeze
s.description = "Create beautiful transactional emails right within HubSpot using the email editor with all the benefits of smart content, personalization and templates - just like regular HubSpot emails. Create beautiful transactional emails right within HubSpot using the email editor with all the benefits of smart content, personalization and templates - just like regular HubSpot emails. Create beautiful transactional emails right within HubSpot using the email editor with all the benefits of smart content, personalization and templates - just like regular HubSpot emails.".freeze
s.summary = "HubSpot Single Send API SDK for use with Ruby on Rails".freeze
s.authors = ["heaven".freeze]
s.email = ["[email protected]".freeze]
s.homepage = "https://github.com/heaven/hubspot-mailer".freeze
s.files = [
"lib/hubspot-mailer.rb",
"lib/hubspot/mailer.rb",
"lib/hubspot/mailer/delivery.rb",
"lib/hubspot/mailer/exceptions.rb",
"lib/hubspot/mailer/hubspot_preview_interceptor.rb",
"lib/hubspot/mailer/message.rb",
]
s.require_paths = ["lib"]
if s.respond_to? :specification_version
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0')
s.add_runtime_dependency(%q<hubspot-ruby>.freeze, ["~> 0.4"])
s.add_runtime_dependency(%q<actionmailer>.freeze, ["< 6.1"])
s.add_development_dependency(%q<bundler>.freeze, ["~> 1.0"])
else
s.add_dependency(%q<hubspot-ruby>.freeze, ["~> 0.4"])
s.add_dependency(%q<actionmailer>.freeze, ["< 6.1"])
s.add_dependency(%q<bundler>.freeze, ["~> 1.0"])
end
else
s.add_dependency(%q<hubspot-ruby>.freeze, ["~> 0.4"])
s.add_dependency(%q<actionmailer>.freeze, ["~> 5.1"])
s.add_dependency(%q<bundler>.freeze, ["~> 1.0"])
end
end