This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enquiry.gemspec
50 lines (44 loc) · 1.98 KB
/
enquiry.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'enquiry/version'
Gem::Specification.new do |spec|
spec.name = 'enquiry'
spec.version = Enquiry::VERSION
spec.authors = ['Timothy Asquith']
spec.email = ['[email protected]']
spec.summary = "After your site's contact form is submitted, run standard background jobs"
spec.description = %w(
After a user submits your site's contact form, 'enquiry' will help you run
your post-submit actions. These actions will be run as separate processes, by plugging
in to a Ruby-based worker library like Sidekiq.
It currently has support for:
* sending notification emails to the site owner
* subscribing the enquiry to a Mailchimp list
* adding the enquiry's details to a Google Sheet
)
spec.homepage = 'https://github.com/timiyay/enquiry'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.add_runtime_dependency 'google_drive'
spec.add_runtime_dependency 'mailchimp-api'
spec.add_runtime_dependency 'pony'
spec.add_runtime_dependency 'redis'
spec.add_runtime_dependency 'sidekiq'
spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'faker'
spec.add_development_dependency 'growl'
spec.add_development_dependency 'guard'
spec.add_development_dependency 'guard-bundler'
spec.add_development_dependency 'guard-rspec'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '>=3.0.0'
spec.add_development_dependency 'rspec-mocks'
spec.add_development_dependency 'travis', '>=1.7.5'
end