$:.push File.expand_path("../lib", __FILE__) require "active_mailer/version" # Provide a simple gemspec so you can easily use your enginex # project in your rails apps through git. Gem::Specification.new do |s| s.name = "active_mailer" s.summary = "Adds model-level validation to emails." s.description = "Applications that have complex email sending logic have DRYness problems. ActiveMailer solves that by making a legitimate email model where all sending logic belongs. It is also capable of acting as an audit trail for email sending." s.authors = ["Matt Gordon", "Elijah Miller"] s.email = 'support@expectedbehavior.com' s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.rdoc"] s.version = ActiveMailer::VERSION s.homepage = 'https://github.com/expectedbehavior/active_mailer' s.required_rubygems_version = "> 1.3.6" s.add_dependency "rails", ">= 3.2" s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, ["~> 0.7.0"]) s.add_development_dependency(%q, [">= 1.3.5"]) s.add_development_dependency(%q, ["~> 2.1.0"]) s.files = `git ls-files`.split("\n") s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact s.require_path = 'lib' end