-
Notifications
You must be signed in to change notification settings - Fork 3
/
rails_mail_preview.gemspec
23 lines (20 loc) · 1.01 KB
/
rails_mail_preview.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rails_mail_preview/version"
Gem::Specification.new do |s|
s.name = "rails_mail_preview"
s.version = RailsMailPreview::VERSION
s.authors = ["Fernando Barajas"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{A Rails plugin gem to intercept emails in development and preview them in RailsMailPreview.}
s.description = %q{A Rails plugin gem to intercept emails in development and preview them in RailsMailPreview to get an idea of what it will look like when it's sent in production.}
s.date = "2012-05-11"
s.rubyforge_project = "rails_mail_preview"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('FBDistributedNotification', '0.0.1')
s.add_dependency('rails', '>= 3.0.0')
end