-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathvmail.gemspec
28 lines (24 loc) · 1.03 KB
/
vmail.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "vmail/version"
Gem::Specification.new do |s|
s.name = "vmail"
s.version = Vmail::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.9.0'
s.authors = ["Daniel Choi"]
s.email = ["[email protected]"]
s.homepage = "http://danielchoi.com/software/vmail.html"
s.summary = %q{A Vim interface to Gmail}
s.description = %q{Manage your email with Vim}
s.licenses = %w(MIT)
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_runtime_dependency 'mail', '~> 2.2', '>= 2.2.12'
s.add_runtime_dependency 'highline', '~> 1.6', '>= 1.6.1'
s.add_runtime_dependency 'sequel', '~> 3.24', '>= 3.24.1'
s.add_runtime_dependency 'sqlite3', '~> 1.3', '>= 1.3.3'
s.add_runtime_dependency 'versionomy', '~> 0.4', '>= 0.4.4'
end