-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheffective_postmark.gemspec
More file actions
34 lines (29 loc) · 1.35 KB
/
effective_postmark.gemspec
File metadata and controls
34 lines (29 loc) · 1.35 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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'effective_postmark/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'effective_postmark'
s.version = EffectivePostmark::VERSION
s.authors = ['Code and Effect']
s.email = ['info@codeandeffect.com']
s.homepage = 'https://github.com/code-and-effect/effective_postmark'
s.summary = 'Effective Postmark captures Postmark::InvalidRecipientError and marks Users as bounced'
s.description = 'Effective Postmark captures Postmark::InvalidRecipientError and marks Users as bounced'
s.licenses = ['MIT']
s.files = Dir["{app,config,db,lib}/**/*"] + ['MIT-LICENSE', 'README.md']
s.add_dependency 'rails'
s.add_dependency 'postmark-rails'
s.add_dependency 'effective_bootstrap'
s.add_dependency 'effective_datatables', '>= 4.0.0'
s.add_dependency 'effective_logging'
s.add_dependency 'effective_resources'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'devise'
s.add_development_dependency 'dotenv-rails'
s.add_development_dependency 'haml-rails'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'wicked'
s.add_development_dependency 'effective_test_bot'
s.add_development_dependency 'effective_developer' # Optional but suggested
end