forked from agaridata/spf-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspf.gemspec
More file actions
68 lines (63 loc) · 2.25 KB
/
spf.gemspec
File metadata and controls
68 lines (63 loc) · 2.25 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "spf"
s.version = "0.0.44"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Andrew Flury", "Julian Mehnle", "Jacob Rideout"]
s.date = "2015-03-04"
s.description = " An object-oriented Ruby implementation of the Sender Policy Framework (SPF)\n e-mail sender authentication system, fully compliant with RFC 4408.\n"
s.email = ["code@agari.com", "aflury@agari.com", "jmehnle@agari.com", "jrideout@agari.com"]
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
".document",
".rspec",
"Gemfile",
"Gemfile.lock",
"README.rdoc",
"Rakefile",
"lib/spf.rb",
"lib/spf/error.rb",
"lib/spf/eval.rb",
"lib/spf/macro_string.rb",
"lib/spf/model.rb",
"lib/spf/request.rb",
"lib/spf/result.rb",
"lib/spf/util.rb",
"lib/spf/version.rb",
"spec/spec_helper.rb",
"spec/spf_spec.rb",
"spf.gemspec"
]
s.homepage = "https://github.com/agaridata/spf-ruby"
s.licenses = ["none (all rights reserved)"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.23.2"
s.summary = "Implementation of the Sender Policy Framework"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<ruby-ip>, ["~> 0.9.1"])
s.add_development_dependency(%q<rspec>, ["~> 2.9"])
s.add_development_dependency(%q<rdoc>, ["~> 3"])
s.add_development_dependency(%q<bundler>, ["~> 1.2"])
s.add_development_dependency(%q<jeweler>, ["~> 1.8"])
else
s.add_dependency(%q<ruby-ip>, ["~> 0.9.1"])
s.add_dependency(%q<rspec>, ["~> 2.9"])
s.add_dependency(%q<rdoc>, ["~> 3"])
s.add_dependency(%q<bundler>, ["~> 1.2"])
s.add_dependency(%q<jeweler>, ["~> 1.8"])
end
else
s.add_dependency(%q<ruby-ip>, ["~> 0.9.1"])
s.add_dependency(%q<rspec>, ["~> 2.9"])
s.add_dependency(%q<rdoc>, ["~> 3"])
s.add_dependency(%q<bundler>, ["~> 1.2"])
s.add_dependency(%q<jeweler>, ["~> 1.8"])
end
end