-
Notifications
You must be signed in to change notification settings - Fork 130
/
refinerycms-inquiries.gemspec
28 lines (24 loc) · 1.2 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 = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_dependency 'refinerycms-core', '~> 4.0'
s.add_dependency 'mobility'
s.add_dependency 'refinerycms-settings', '~> 4.0'
s.add_dependency 'filters_spam', '~> 0.2'
s.add_dependency 'actionmailer', ['>= 5.1.0', '< 5.3']
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