forked from jyruzicka/omniboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomniboard.gemspec
More file actions
23 lines (18 loc) · 765 Bytes
/
omniboard.gemspec
File metadata and controls
23 lines (18 loc) · 765 Bytes
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 -*-
Gem::Specification.new do |s|
s.name = "omniboard"
s.version = File.read("version.txt")
s.license = "MIT"
s.summary = "Display Omnifocus libraries as kanban boards, with ruby."
s.description = "A pure-ruby library (and binary) to read and parse Omnifocus task lists as kanban boards."
s.author = "Jan-Yves Ruzicka"
s.email = "jan@1klb.com"
s.homepage = "https://github.com/jyruzicka/omniboard"
s.files = File.read("Manifest").split("\n").select{ |l| !l.start_with?("#") && l != ""}
s.require_paths << "lib"
s.bindir = "bin"
s.executables << "omniboard"
s.extra_rdoc_files = ["README.md"]
s.add_runtime_dependency "rubyfocus", "~> 0.5", ">= 0.5.13"
s.add_runtime_dependency "optimist", "~> 3.0"
end