forked from heartcombo/mail_form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmail_form.gemspec
More file actions
24 lines (20 loc) · 963 Bytes
/
mail_form.gemspec
File metadata and controls
24 lines (20 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- 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 = "contact@plataformatec.com.br"
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.files = Dir["CHANGELOG", "MIT-LICENSE", "README.md", "lib/**/*"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]
s.rubyforge_project = "mail_form"
s.add_dependency('actionmailer', '>= 3.2', '< 5.2')
s.add_dependency('activemodel', '>= 3.2', '< 5.2')
end