-
Notifications
You must be signed in to change notification settings - Fork 2
/
has_emails.gemspec
22 lines (20 loc) · 1.03 KB
/
has_emails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'has_emails/version'
Gem::Specification.new do |s|
s.name = "has_emails"
s.version = HasEmails::VERSION
s.authors = ["Aaron Pfeifer"]
s.email = "[email protected]"
s.homepage = "http://www.pluginaweek.org"
s.description = "Demonstrates a reference implementation for sending emails with logging and asynchronous support in ActiveRecord"
s.summary = "Email logging in ActiveRecord"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.rdoc_options = %w(--line-numbers --inline-source --title has_emails --main README.rdoc)
s.extra_rdoc_files = %w(README.rdoc CHANGELOG.rdoc LICENSE)
s.add_dependency("has_messages", ">= 0.4.0")
s.add_dependency("validates_as_email_address", ">= 0.0.2")
s.add_development_dependency("rake")
s.add_development_dependency("plugin_test_helper", ">= 0.3.2")
end