forked from adamwiggins/pony
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpony.gemspec
More file actions
19 lines (17 loc) · 699 Bytes
/
Copy pathpony.gemspec
File metadata and controls
19 lines (17 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = 'pony'
s.version = "1.13.2"
s.summary = "Send email in one command: Pony.mail(:to => 'someone@example.com', :body => 'hello')"
s.description = s.summary
s.authors = ["Adam Wiggins", "Ben Prew"]
s.email = 'ben@throwingbones.com'
s.homepage = 'http://github.com/benprew/pony'
s.license = 'MIT'
s.files = ["README.md", "Rakefile", "pony.gemspec" ] + Dir.glob("{lib,spec}/**/*")
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.add_runtime_dependency "base64", "> 0"
s.add_runtime_dependency 'mail', '>= 2.0'
s.add_development_dependency "rspec", ">= 2.14"
s.add_development_dependency "rake"
end