-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathactionmailer-callbacks.gemspec
25 lines (22 loc) · 1.11 KB
/
actionmailer-callbacks.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/actionmailer-callbacks/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['andrea longhi']
gem.email = ['andrea@spaghetticode.it']
gem.description = %q{adds before_create, around_create callbacks to action mailer 3}
gem.summary = %q{adds before_create, around_create callbacks to action mailer 3}
gem.homepage = 'https://github.com/spaghetticode/actionmailer-callbacks'
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.name = 'actionmailer-callbacks'
gem.require_paths = ["lib"]
gem.version = ActionMailer::Callbacks::VERSION
gem.add_dependency 'actionmailer', '~> 3.0'
gem.add_dependency 'activesupport'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 2.0'
gem.add_development_dependency 'cucumber', '~> 1.0'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'guard-cucumber'
end