-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_task.gemspec
More file actions
27 lines (24 loc) · 987 Bytes
/
create_task.gemspec
File metadata and controls
27 lines (24 loc) · 987 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'create_task/version'
Gem::Specification.new do |spec|
spec.name = 'create_task'
spec.version = CreateTask::VERSION
spec.authors = ['Nick Prokesch']
spec.email = ['nick@prokes.ch']
spec.summary = 'Handles task creation for a variety of todo apps'
spec.description = 'Creates tasks for omnifocus, things, reminders'
spec.homepage = 'https://github.com/prokizzle/create_task'
spec.license = 'MIT'
spec.files = `git ls-files`.split($RS)
spec.require_paths = ['lib']
spec.bindir = 'bin'
spec.executables << 'create_task'
spec.add_dependency 'mechanize', '~> 2.7'
spec.add_dependency 'amatch', '~> 0.2'
spec.add_dependency 'rb-appscript', '~> 0.6'
spec.add_dependency 'highline', '~> 1.6'
spec.add_dependency 'chronic', '~> 0.10'
spec.add_dependency 'sqlite3', '~> 1.3'
end