toodledo 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d8fb997171c8036db59a930fae5c5e0447ec54c3
4
+ data.tar.gz: 16897a7c54fc3d62b2cf36d233a5e816eeec0df8
5
+ SHA512:
6
+ metadata.gz: 7e1da1df8ce1648c24d183a73aebc3896a1fe3afcb6d836f33ccd1fddec2e9208d592547d2556933cea9dd0d6b953ddb092cd9b1c35d564028a4d057770f3f43
7
+ data.tar.gz: 6ee6f9cf8004b7ae13dfe4ed11f841878031b402b1059c63d2ce31dda4c2e420733a55da0659f8fcdca0752e7542d26ce5cf44ffbacc8bf4e54a3f8d354c8d50
@@ -1,6 +1,10 @@
1
+ == 1.4.2
2
+
3
+ * Upgrade to cmdparse 3.x to fix https://github.com/wsargent/toodledo/issues/9
4
+
1
5
  == 1.4.1
2
6
 
3
- * Forgot to update the manifest again...
7
+ * Forgot to update the manifest.
4
8
 
5
9
  == 1.4.0
6
10
 
@@ -67,7 +71,7 @@
67
71
  * Add functionality to archive folders.
68
72
  * Add stdin command to read from pipe or redirected files
69
73
  * Add formatters for the client so it's easier to tweak line output.
70
- * Add proper priority support to the client (in the format !top, !high, etc.)
74
+ * Add proper priority support to the client (in the format !top, !high, etc.)
71
75
  * Make filter able to take symbols.
72
76
  * Change symbol for goals from $ to ^ (was confusing when entering 'I owe $5')
73
77
  * Add unit tests for client.
@@ -92,4 +96,3 @@
92
96
  == 1.0.0 / 2008-02-10
93
97
 
94
98
  * First version released!
95
-
@@ -3,9 +3,9 @@ module Toodledo
3
3
  module Version
4
4
  MAJOR = 1
5
5
  MINOR = 4
6
- PATCH = 1
6
+ PATCH = 2
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH].compact.join('.')
9
9
  end
10
10
 
11
- end
11
+ end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{toodledo}
8
- s.version = "1.4.1"
8
+ s.version = "1.4.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Will Sargent}]
12
- s.date = %q{2012-12-29}
12
+ s.date = %q{2015-07-07}
13
13
  s.description = %q{This is a Ruby API and client for http://toodledo.com, a task management
14
14
  website. It implements all of the calls from Toodledo's developer API, and
15
15
  provides a nice wrapper around the functionality.
@@ -83,18 +83,17 @@ tasks with a BetaBrite? It can all happen.
83
83
  s.specification_version = 3
84
84
 
85
85
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
86
- s.add_runtime_dependency(%q<cmdparse>, [">= 0"])
86
+ s.add_runtime_dependency(%q<cmdparse>, ['>= 2.0.0', '< 3.0'])
87
87
  s.add_runtime_dependency(%q<highline>, [">= 0"])
88
88
  s.add_development_dependency(%q<flexmock>, [">= 0"])
89
89
  else
90
- s.add_dependency(%q<cmdparse>, [">= 0"])
90
+ s.add_dependency(%q<cmdparse>, ['>= 2.0.0', '< 3.0'])
91
91
  s.add_dependency(%q<highline>, [">= 0"])
92
92
  s.add_dependency(%q<flexmock>, [">= 0"])
93
93
  end
94
94
  else
95
- s.add_dependency(%q<cmdparse>, [">= 0"])
95
+ s.add_dependency(%q<cmdparse>, ['>= 2.0.0', '< 3.0'])
96
96
  s.add_dependency(%q<highline>, [">= 0"])
97
97
  s.add_dependency(%q<flexmock>, [">= 0"])
98
98
  end
99
99
  end
100
-
metadata CHANGED
@@ -1,85 +1,75 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toodledo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
5
- prerelease:
4
+ version: 1.4.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Will Sargent
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-29 00:00:00.000000000 Z
11
+ date: 2015-07-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: cmdparse
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
- version: '0'
19
+ version: 2.0.0
20
+ - - <
21
+ - !ruby/object:Gem::Version
22
+ version: '3.0'
22
23
  type: :runtime
23
24
  prerelease: false
24
25
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
26
  requirements:
27
- - - ! '>='
27
+ - - '>='
28
28
  - !ruby/object:Gem::Version
29
- version: '0'
29
+ version: 2.0.0
30
+ - - <
31
+ - !ruby/object:Gem::Version
32
+ version: '3.0'
30
33
  - !ruby/object:Gem::Dependency
31
34
  name: highline
32
35
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
36
  requirements:
35
- - - ! '>='
37
+ - - '>='
36
38
  - !ruby/object:Gem::Version
37
39
  version: '0'
38
40
  type: :runtime
39
41
  prerelease: false
40
42
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
43
  requirements:
43
- - - ! '>='
44
+ - - '>='
44
45
  - !ruby/object:Gem::Version
45
46
  version: '0'
46
47
  - !ruby/object:Gem::Dependency
47
48
  name: flexmock
48
49
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
50
  requirements:
51
- - - ! '>='
51
+ - - '>='
52
52
  - !ruby/object:Gem::Version
53
53
  version: '0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
57
  requirements:
59
- - - ! '>='
58
+ - - '>='
60
59
  - !ruby/object:Gem::Version
61
60
  version: '0'
62
- description: ! 'This is a Ruby API and client for http://toodledo.com, a task management
63
-
64
- website. It implements all of the calls from Toodledo''s developer API, and
65
-
61
+ description: |
62
+ This is a Ruby API and client for http://toodledo.com, a task management
63
+ website. It implements all of the calls from Toodledo's developer API, and
66
64
  provides a nice wrapper around the functionality.
67
65
 
68
-
69
66
  The client allows you to work with Toodledo from the command line. It will
70
-
71
67
  work in either interactive or command line mode.
72
68
 
73
-
74
69
  You can also use the client in your shell scripts, or use the API directly
75
-
76
70
  as part of a web application. Custom private RSS feed? Want to have the Mac
77
-
78
71
  read out your top priority? Input tasks through Quicksilver? Print out
79
-
80
72
  tasks with a BetaBrite? It can all happen.
81
-
82
- '
83
73
  email: will.sargent@gmail.com
84
74
  executables:
85
75
  - toodledo
@@ -106,11 +96,11 @@ files:
106
96
  - lib/toodledo/command_line/list_contexts_command.rb
107
97
  - lib/toodledo/command_line/list_folders_command.rb
108
98
  - lib/toodledo/command_line/list_goals_command.rb
99
+ - lib/toodledo/command_line/list_overdue_command.rb
109
100
  - lib/toodledo/command_line/list_tasks_by_context_command.rb
110
101
  - lib/toodledo/command_line/list_tasks_command.rb
111
102
  - lib/toodledo/command_line/list_today_command.rb
112
103
  - lib/toodledo/command_line/list_tomorrow_command.rb
113
- - lib/toodledo/command_line/list_overdue_command.rb
114
104
  - lib/toodledo/command_line/parser_helper.rb
115
105
  - lib/toodledo/command_line/setup_command.rb
116
106
  - lib/toodledo/command_line/stdin_command.rb
@@ -134,25 +124,24 @@ files:
134
124
  - toodledo.gemspec
135
125
  homepage: http://github.com/wsargent/toodledo
136
126
  licenses: []
127
+ metadata: {}
137
128
  post_install_message:
138
129
  rdoc_options: []
139
130
  require_paths:
140
131
  - lib
141
132
  required_ruby_version: !ruby/object:Gem::Requirement
142
- none: false
143
133
  requirements:
144
- - - ! '>='
134
+ - - '>='
145
135
  - !ruby/object:Gem::Version
146
136
  version: '0'
147
137
  required_rubygems_version: !ruby/object:Gem::Requirement
148
- none: false
149
138
  requirements:
150
- - - ! '>='
139
+ - - '>='
151
140
  - !ruby/object:Gem::Version
152
141
  version: '0'
153
142
  requirements: []
154
143
  rubyforge_project:
155
- rubygems_version: 1.8.23
144
+ rubygems_version: 2.2.2
156
145
  signing_key:
157
146
  specification_version: 3
158
147
  summary: A command line client and API to Toodledo