mirror of
https://github.com/github/rails.git
synced 2026-01-13 16:47:56 -05:00
17 lines
522 B
Ruby
17 lines
522 B
Ruby
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).chomp
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'actionmailer'
|
|
s.version = version
|
|
s.summary = 'Service layer for easy email delivery and testing.'
|
|
s.description = 'Makes it trivial to test and deliver emails sent from a single service layer.'
|
|
|
|
s.author = 'David Heinemeier Hansson'
|
|
s.email = 'david@loudthinking.com'
|
|
s.homepage = 'http://www.rubyonrails.org'
|
|
|
|
s.require_path = 'lib'
|
|
|
|
s.add_dependency 'actionpack', "= #{version}"
|
|
end
|