-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmail_queue.gemspec
More file actions
26 lines (22 loc) · 970 Bytes
/
mail_queue.gemspec
File metadata and controls
26 lines (22 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'mail_queue/version'
Gem::Specification.new do |s|
s.name = "mail_queue"
s.version = MailQueue::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Han Kessels"]
s.email = ["han.kessels@gmail.com"]
s.homepage = "https://github.com/han/mailqueue"
s.summary = "Delivery method for Mail gem to deliver to a beanstalk queue"
s.description = "Delivery method for Mail gem. Delivers mail to a beanstalk queue"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "mail_queue"
s.add_dependency "stalker", ">= 0.6.1"
s.add_dependency "mail", "~> 2.2.14"
s.add_development_dependency "bundler", ">= 1.0.0.rc.5"
s.add_development_dependency "rspec", "~> 2.4.0 "
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end