forked from refinery/refinerycms-inquiries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefinerycms-inquiries.gemspec
28 lines (24 loc) · 1.15 KB
/
refinerycms-inquiries.gemspec
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
# Encoding: UTF-8
Gem::Specification.new do |s|
s.name = %q{refinerycms-inquiries}
s.version = %q{4.0.0}
s.summary = %q{Inquiry handling functionality for the Refinery CMS project.}
s.description = %q{Inquiry handling functionality extracted from Refinery CMS to allow you to have a contact form and manage inquiries in the Refinery backend.}
s.homepage = %q{http://refinerycms.com}
s.email = %q{[email protected]}
s.authors = ['Uģis Ozols', 'Philip Arndt', 'Rob Yurkowski']
s.require_paths = %w(lib)
s.license = %q{MIT}
s.files = Dir.glob("{lib,test}/**/*") + Dir.glob("*.{rdoc,md,txt}")
s.test_files = Dir.glob("test/**/*")
s.add_dependency 'refinerycms-core'
s.add_dependency 'mobility'
s.add_dependency 'refinerycms-settings'
s.add_dependency 'filters_spam'
s.add_dependency 'actionmailer'
s.add_dependency 'httpclient'
s.cert_chain = [File.expand_path("../certs/parndt.pem", __FILE__)]
if $0 =~ /gem\z/ && ARGV.include?("build") && ARGV.include?(__FILE__)
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem")
end
end