-
Notifications
You must be signed in to change notification settings - Fork 23
/
toodledo.gemspec
99 lines (93 loc) · 3.75 KB
/
toodledo.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{toodledo}
s.version = "1.4.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Will Sargent}]
s.date = %q{2015-07-07}
s.description = %q{This is a Ruby API and client for http://toodledo.com, a task management
website. It implements all of the calls from Toodledo's developer API, and
provides a nice wrapper around the functionality.
The client allows you to work with Toodledo from the command line. It will
work in either interactive or command line mode.
You can also use the client in your shell scripts, or use the API directly
as part of a web application. Custom private RSS feed? Want to have the Mac
read out your top priority? Input tasks through Quicksilver? Print out
tasks with a BetaBrite? It can all happen.
}
s.email = %q{[email protected]}
s.executables = [%q{toodledo}]
s.extra_rdoc_files = [
"README.md"
]
s.files = [
"History.txt",
"README.md",
"Rakefile",
"bin/toodledo",
"lib/toodledo.rb",
"lib/toodledo/command_line/add_command.rb",
"lib/toodledo/command_line/base_command.rb",
"lib/toodledo/command_line/client.rb",
"lib/toodledo/command_line/complete_command.rb",
"lib/toodledo/command_line/context_formatter.rb",
"lib/toodledo/command_line/delete_command.rb",
"lib/toodledo/command_line/edit_command.rb",
"lib/toodledo/command_line/folder_formatter.rb",
"lib/toodledo/command_line/goal_formatter.rb",
"lib/toodledo/command_line/hotlist_command.rb",
"lib/toodledo/command_line/interactive_command.rb",
"lib/toodledo/command_line/list_contexts_command.rb",
"lib/toodledo/command_line/list_folders_command.rb",
"lib/toodledo/command_line/list_goals_command.rb",
"lib/toodledo/command_line/list_tasks_by_context_command.rb",
"lib/toodledo/command_line/list_tasks_command.rb",
"lib/toodledo/command_line/list_today_command.rb",
"lib/toodledo/command_line/list_tomorrow_command.rb",
"lib/toodledo/command_line/list_overdue_command.rb",
"lib/toodledo/command_line/parser_helper.rb",
"lib/toodledo/command_line/setup_command.rb",
"lib/toodledo/command_line/stdin_command.rb",
"lib/toodledo/command_line/task_formatter.rb",
"lib/toodledo/context.rb",
"lib/toodledo/folder.rb",
"lib/toodledo/goal.rb",
"lib/toodledo/invalid_configuration_error.rb",
"lib/toodledo/priority.rb",
"lib/toodledo/repeat.rb",
"lib/toodledo/server_error.rb",
"lib/toodledo/session.rb",
"lib/toodledo/status.rb",
"lib/toodledo/task.rb",
"lib/toodledo/version.rb",
"test/client_test.rb",
"test/helper.rb",
"test/parser_helper_test.rb",
"test/session_test.rb",
"test/toodledo_functional_test.rb",
"toodledo.gemspec"
]
s.homepage = %q{https://github.com/wsargent/toodledo}
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.5}
s.summary = %q{A command line client and API to Toodledo}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<cmdparse>, ['>= 2.0.0', '< 3.0'])
s.add_runtime_dependency(%q<highline>, [">= 0"])
s.add_development_dependency(%q<flexmock>, [">= 0"])
else
s.add_dependency(%q<cmdparse>, ['>= 2.0.0', '< 3.0'])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<flexmock>, [">= 0"])
end
else
s.add_dependency(%q<cmdparse>, ['>= 2.0.0', '< 3.0'])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<flexmock>, [">= 0"])
end
end