-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimap_tickler.gemspec
25 lines (21 loc) · 968 Bytes
/
imap_tickler.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "imap_tickler/version"
Gem::Specification.new do |s|
s.name = "imap_tickler"
s.version = ImapTickler::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jelle Helsen"]
s.email = ["jelle.helsen@hcode.be"]
s.homepage = "http://rubygems.org/gems/imap_tickler"
s.summary = %q{an imap tickler}
s.description = %q{imap_tickler is a utility that ticklers your 43 folders style mailfolders. It expects the following folderstructure in your mail.}
s.rubyforge_project = "imap_tickler"
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_development_dependency "rspec"
s.add_development_dependency "delorean"
s.add_development_dependency "mocha"
end