forked from tomlion/mails_viewer
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmails_viewer.gemspec
24 lines (20 loc) · 1 KB
/
mails_viewer.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "mails_viewer/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "mails_viewer"
s.version = MailsViewer::VERSION
s.authors = ["Youcai Qian", "Dingding Ye"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/pragmaticly/mails_viewer"
s.summary = "A mails preview Engine which provides a table view for all mails under tmp/mails."
s.description = "A mails preview Engine which provides a table view for all mails under tmp/mails."
s.files = Dir["{app,config,lib}/**/*"] + ["LICENSE", "Gemfile", "Rakefile", "README.md"] - ["Gemfile.lock"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 3.1.0"
s.add_dependency "jquery-rails", ">= 2.0.1"
s.add_dependency "jquery-datatables-rails"
s.add_development_dependency "mail", '~> 2.4.0'
s.add_development_dependency 'rspec', '~> 2.11.0'
end