-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsendwithus_ruby_action_mailer.gemspec
30 lines (26 loc) · 1.24 KB
/
sendwithus_ruby_action_mailer.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sendwithus_ruby_action_mailer/version'
Gem::Specification.new do |gem|
gem.name = "sendwithus_ruby_action_mailer"
gem.version = SendWithUsMailer::VERSION
gem.authors = ["Nicholas Rempel"]
gem.email = ["[email protected]"]
gem.description = %q{A convenient way to use the Send With Us email
service with a Ruby on Rails app. SendWilthUsMailer implements a
mailer API similar to the ActionMailer railtie.}
gem.summary = %q{An ActionMailer look alike for Send With Us.}
gem.homepage = 'http://github.com/sendwithus/sendwithus_ruby_action_mailer'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'send_with_us', '>= 1.9.0'
gem.add_runtime_dependency 'actionpack'
gem.add_runtime_dependency 'activejob'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'minitest-colorize'
gem.add_development_dependency 'mocha'
end