Sha256: fd176d1599a069719f6ec547209e453f70c458f510e08083a7c1b12f8c8f025a
Contents?: true
Size: 879 Bytes
Versions: 1
Compression:
Stored size: 879 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sendmailer/version' Gem::Specification.new do |gem| gem.license = "MIT" gem.name = "sendmailer" gem.version = Sendmailer::VERSION gem.authors = ["Andrey"] gem.email = ["railscode@gmail.com"] gem.description = "Send Email from Rails 3 App with Sendmail server (Such as Exim4)" gem.summary = "Send Email from Rails 3 App with Sendmail server (Such as Exim4)" gem.homepage = "https://github.com/st-granat/sendmailer" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency "rails", ">= 3.2.12" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sendmailer-0.0.12 | sendmailer.gemspec |