-
Notifications
You must be signed in to change notification settings - Fork 73
/
mail_form.gemspec
30 lines (26 loc) · 1.28 KB
/
mail_form.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mail_form/version"
Gem::Specification.new do |s|
s.name = "mail_form"
s.version = MailForm::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Send e-mail straight from forms in Rails with I18n, validations, attachments and request information."
s.email = "[email protected]"
s.homepage = "https://github.com/plataformatec/mail_form"
s.description = "Send e-mail straight from forms in Rails with I18n, validations, attachments and request information."
s.authors = ['José Valim', 'Carlos Antônio']
s.license = 'MIT'
s.metadata = {
"homepage_uri" => "https://github.com/heartcombo/mail_form",
"changelog_uri" => "https://github.com/heartcombo/mail_form/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/heartcombo/mail_form",
"bug_tracker_uri" => "https://github.com/heartcombo/mail_form/issues",
"wiki_uri" => "https://github.com/heartcombo/mail_form/wiki"
}
s.files = Dir["CHANGELOG", "MIT-LICENSE", "README.md", "lib/**/*"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.5.0'
s.add_dependency('actionmailer', '>= 5.2')
s.add_dependency('activemodel', '>= 5.2')
end