-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathotask.gemspec
32 lines (31 loc) · 1.22 KB
/
otask.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
29
30
31
32
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'otask'
s.version = OTask::VERSION
s.author = 'Brett Terpstra'
s.email = '[email protected]'
s.homepage = 'http://brettterpstra.com/'
s.platform = Gem::Platform::RUBY
s.summary = 'A command line tool for creating OmniFocus tasks (Mac)'
s.description = 'A CLI for OmniFocus task entry with natural language syntax and fuzzy project/context matching.'
s.license = 'MIT'
# Add your other files here if you make them
s.files = %w(
bin/otask
lib/otask.rb
lib/version.rb
)
s.require_paths << 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.md']
s.rdoc_options << '--title' << 'doing' << '--main' << 'README.md' << '--markup' << 'markdown' << '-ri'
s.bindir = 'bin'
s.executables << 'otask'
s.add_development_dependency 'rake', '~> 0'
s.add_development_dependency 'rdoc', '~> 4.1', '>= 4.1.1'
s.add_development_dependency 'aruba', '~> 0'
s.add_runtime_dependency 'chronic','~> 0.10', '>= 0.10.2'
s.add_runtime_dependency 'rb-scpt', '~> 1.0', '>=1.0.1'
s.add_runtime_dependency 'amatch', '~> 0.3', '>= 0.3.0'
end