-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfakemail.gemspec
32 lines (26 loc) · 1 KB
/
fakemail.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fakemail/version'
Gem::Specification.new do |s|
s.name = 'fakemail'
s.version = FakeMail::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.authors = ['Igor Balos']
s.email = ['[email protected]', '[email protected]']
s.summary = 'Email content builder tool.'
s.description = 'Email content builder tool.'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.homepage = 'https://github.com/ActiveCampaign/fakemail.git'
s.require_paths = ['lib']
s.required_rubygems_version = '>= 2.6.0'
s.add_dependency 'faker'
s.add_dependency 'mail', '>= 2.7.1'
s.add_dependency 'postmark', '>= 1.21.1'
s.add_dependency 'secure_yaml'
s.add_dependency 'wbconfigurator'
s.add_development_dependency 'pry'
s.add_development_dependency 'rspec'
end