omnifocus 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.txt +6 -0
- data/README.txt +2 -1
- data/Rakefile +14 -2
- data/lib/omnifocus.rb +4 -4
- metadata +90 -115
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: b72d74459a5547a7cfa7fa0cf8c65b6e6160c170
|
|
4
|
+
data.tar.gz: 02fa457bf1bb341119f40b5778b3a93237deff74
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 04faf8f78d3b5ef3baa8738d5de14ebb3f575559fff097566997398094e99473582d33a9af4f388c6343691c8c31d761ba348ccd42aa45f4db1ce2cf86fb6190
|
|
7
|
+
data.tar.gz: 468f5f89b0b35dc50b04b35af3f98fbcfec449fdc9b5ae677c0dc1977ff850022f77bc4e8994caa803c9305a4bced81ccf99a67aede35c50f0d56ac124b320a0
|
checksums.yaml.gz.sig
ADDED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.txt
CHANGED
data/README.txt
CHANGED
|
@@ -26,11 +26,12 @@ Synchronizes bug tracking systems to omnifocus.
|
|
|
26
26
|
|
|
27
27
|
+ omnifocus-bugzilla by kushali
|
|
28
28
|
+ omnifocus-github by zenspider
|
|
29
|
-
+ omnifocus-pivotaltracker by
|
|
29
|
+
+ omnifocus-pivotaltracker by vesan
|
|
30
30
|
+ omnifocus-redmine by kushali
|
|
31
31
|
+ omnifocus-rt by kushali
|
|
32
32
|
+ omnifocus-rubyforge by zenspider
|
|
33
33
|
+ omnifocus-lighthouse by juliengrimault
|
|
34
|
+
+ omnifocus-trello by vesan
|
|
34
35
|
|
|
35
36
|
== REQUIREMENTS:
|
|
36
37
|
|
data/Rakefile
CHANGED
|
@@ -10,12 +10,24 @@ Hoe.spec "omnifocus" do
|
|
|
10
10
|
developer "aja", "kushali@rubyforge.org"
|
|
11
11
|
developer "Ryan Davis", "ryand-ruby@zenspider.com"
|
|
12
12
|
|
|
13
|
+
license "MIT"
|
|
14
|
+
|
|
13
15
|
dependency "rb-appscript", "~> 0.6.1"
|
|
14
16
|
dependency "mechanize", "~> 1.0"
|
|
15
17
|
|
|
16
|
-
self.rubyforge_name = "seattlerb"
|
|
17
|
-
|
|
18
18
|
pluggable!
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
+
task :sync => :isolate do
|
|
22
|
+
ENV["GEM_PATH"] = File.expand_path "~/.gem/sandboxes/omnifocus"
|
|
23
|
+
|
|
24
|
+
ruby "-Ilib:../../omnifocus-github/dev/lib bin/of sync github"
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
task :debug => :isolate do
|
|
28
|
+
ENV["GEM_PATH"] = File.expand_path "~/.gem/sandboxes/omnifocus"
|
|
29
|
+
|
|
30
|
+
ruby "-d -Ilib:../../omnifocus-github/dev/lib bin/of sync github"
|
|
31
|
+
end
|
|
32
|
+
|
|
21
33
|
# vim: syntax=ruby
|
data/lib/omnifocus.rb
CHANGED
|
@@ -26,7 +26,7 @@ include Appscript
|
|
|
26
26
|
# bts_id: a string uniquely identifying a task: SYSTEM(-projectname)?#id
|
|
27
27
|
|
|
28
28
|
class OmniFocus
|
|
29
|
-
VERSION = '2.1.
|
|
29
|
+
VERSION = '2.1.3'
|
|
30
30
|
|
|
31
31
|
##
|
|
32
32
|
# bug_db = {
|
|
@@ -228,7 +228,9 @@ class OmniFocus
|
|
|
228
228
|
|
|
229
229
|
if $DEBUG then
|
|
230
230
|
require 'pp'
|
|
231
|
+
p :existing
|
|
231
232
|
pp existing
|
|
233
|
+
p :bug_db
|
|
232
234
|
pp bug_db
|
|
233
235
|
end
|
|
234
236
|
|
|
@@ -381,7 +383,6 @@ class OmniFocus
|
|
|
381
383
|
def cmd_schedule args
|
|
382
384
|
name = args.shift or abort "need a context or project name"
|
|
383
385
|
|
|
384
|
-
of = OmniFocus.new
|
|
385
386
|
cp = context(name) || project(name)
|
|
386
387
|
|
|
387
388
|
abort "Context/Project not found: #{name}" unless cp
|
|
@@ -395,7 +396,6 @@ class OmniFocus
|
|
|
395
396
|
projs = Hash.new { |h,k| h[k] = [] }
|
|
396
397
|
|
|
397
398
|
all_projects.each do |proj|
|
|
398
|
-
name = proj.name
|
|
399
399
|
ri = proj.review_interval
|
|
400
400
|
|
|
401
401
|
projs[ri[:steps]] << proj
|
|
@@ -715,7 +715,7 @@ class OmniFocus
|
|
|
715
715
|
end
|
|
716
716
|
|
|
717
717
|
def aggregate collection
|
|
718
|
-
h = Hash.new { |
|
|
718
|
+
h = Hash.new { |h1,k1| h1[k1] = Hash.new { |h2,k2| h2[k2] = [] } }
|
|
719
719
|
p = Hash.new 0
|
|
720
720
|
|
|
721
721
|
collection.each do |thing|
|
metadata
CHANGED
|
@@ -1,25 +1,19 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omnifocus
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 2
|
|
8
|
-
- 1
|
|
9
|
-
- 2
|
|
10
|
-
version: 2.1.2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.1.3
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
6
|
+
authors:
|
|
13
7
|
- aja
|
|
14
8
|
- Ryan Davis
|
|
15
9
|
autorequire:
|
|
16
10
|
bindir: bin
|
|
17
|
-
cert_chain:
|
|
11
|
+
cert_chain:
|
|
18
12
|
- |
|
|
19
13
|
-----BEGIN CERTIFICATE-----
|
|
20
|
-
|
|
14
|
+
MIIDPjCCAiagAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
|
|
21
15
|
ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
|
|
22
|
-
|
|
16
|
+
GRYDY29tMB4XDTEzMDkxNjIzMDQxMloXDTE0MDkxNjIzMDQxMlowRTETMBEGA1UE
|
|
23
17
|
AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
|
|
24
18
|
JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
|
|
25
19
|
b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
|
|
@@ -29,107 +23,99 @@ cert_chain:
|
|
|
29
23
|
qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
|
|
30
24
|
gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
|
31
25
|
HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
26
|
+
AQCFZ7JTzoy1gcG4d8A6dmOJy7ygtO5MFpRIz8HuKCF5566nOvpy7aHhDDzFmQuu
|
|
27
|
+
FX3zDU6ghx5cQIueDhf2SGOncyBmmJRRYawm3wI0o1MeN6LZJ/3cRaOTjSFy6+S6
|
|
28
|
+
zqDmHBp8fVA2TGJtO0BLNkbGVrBJjh0UPmSoGzWlRhEVnYC33TpDAbNA+u39UrQI
|
|
29
|
+
ynwhNN7YbnmSR7+JU2cUjBFv2iPBO+TGuWC+9L2zn3NHjuc6tnmSYipA9y8Hv+As
|
|
30
|
+
Y4evBVezr3SjXz08vPqRO5YRdO3zfeMT8gBjRqZjWJGMZ2lD4XNfrs7eky74CyZw
|
|
31
|
+
xx3n58i0lQkBE1EpKE0lFu/y
|
|
38
32
|
-----END CERTIFICATE-----
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- !ruby/object:Gem::Dependency
|
|
33
|
+
date: 2014-01-16 00:00:00.000000000 Z
|
|
34
|
+
dependencies:
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
43
36
|
name: rb-appscript
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
none: false
|
|
47
|
-
requirements:
|
|
37
|
+
requirement: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
48
39
|
- - ~>
|
|
49
|
-
- !ruby/object:Gem::Version
|
|
50
|
-
hash: 5
|
|
51
|
-
segments:
|
|
52
|
-
- 0
|
|
53
|
-
- 6
|
|
54
|
-
- 1
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
55
41
|
version: 0.6.1
|
|
56
42
|
type: :runtime
|
|
57
|
-
version_requirements: *id001
|
|
58
|
-
- !ruby/object:Gem::Dependency
|
|
59
|
-
name: mechanize
|
|
60
43
|
prerelease: false
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ~>
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: 0.6.1
|
|
49
|
+
- !ruby/object:Gem::Dependency
|
|
50
|
+
name: mechanize
|
|
51
|
+
requirement: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
64
53
|
- - ~>
|
|
65
|
-
- !ruby/object:Gem::Version
|
|
66
|
-
|
|
67
|
-
segments:
|
|
68
|
-
- 1
|
|
69
|
-
- 0
|
|
70
|
-
version: "1.0"
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '1.0'
|
|
71
56
|
type: :runtime
|
|
72
|
-
version_requirements: *id002
|
|
73
|
-
- !ruby/object:Gem::Dependency
|
|
74
|
-
name: minitest
|
|
75
57
|
prerelease: false
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - ~>
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '1.0'
|
|
63
|
+
- !ruby/object:Gem::Dependency
|
|
64
|
+
name: minitest
|
|
65
|
+
requirement: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
79
67
|
- - ~>
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
|
|
82
|
-
segments:
|
|
83
|
-
- 4
|
|
84
|
-
- 6
|
|
85
|
-
version: "4.6"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '5.2'
|
|
86
70
|
type: :development
|
|
87
|
-
version_requirements: *id003
|
|
88
|
-
- !ruby/object:Gem::Dependency
|
|
89
|
-
name: rdoc
|
|
90
71
|
prerelease: false
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ~>
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '5.2'
|
|
77
|
+
- !ruby/object:Gem::Dependency
|
|
78
|
+
name: rdoc
|
|
79
|
+
requirement: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
94
81
|
- - ~>
|
|
95
|
-
- !ruby/object:Gem::Version
|
|
96
|
-
|
|
97
|
-
segments:
|
|
98
|
-
- 3
|
|
99
|
-
- 10
|
|
100
|
-
version: "3.10"
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '4.0'
|
|
101
84
|
type: :development
|
|
102
|
-
version_requirements: *id004
|
|
103
|
-
- !ruby/object:Gem::Dependency
|
|
104
|
-
name: hoe
|
|
105
85
|
prerelease: false
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
requirements:
|
|
86
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
109
88
|
- - ~>
|
|
110
|
-
- !ruby/object:Gem::Version
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '4.0'
|
|
91
|
+
- !ruby/object:Gem::Dependency
|
|
92
|
+
name: hoe
|
|
93
|
+
requirement: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ~>
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '3.8'
|
|
116
98
|
type: :development
|
|
117
|
-
|
|
99
|
+
prerelease: false
|
|
100
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
101
|
+
requirements:
|
|
102
|
+
- - ~>
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: '3.8'
|
|
118
105
|
description: Synchronizes bug tracking systems to omnifocus.
|
|
119
|
-
email:
|
|
106
|
+
email:
|
|
120
107
|
- kushali@rubyforge.org
|
|
121
108
|
- ryand-ruby@zenspider.com
|
|
122
|
-
executables:
|
|
109
|
+
executables:
|
|
123
110
|
- of
|
|
124
111
|
- omnifocus
|
|
125
112
|
- omnifocus_new
|
|
126
113
|
extensions: []
|
|
127
|
-
|
|
128
|
-
extra_rdoc_files:
|
|
114
|
+
extra_rdoc_files:
|
|
129
115
|
- History.txt
|
|
130
116
|
- Manifest.txt
|
|
131
117
|
- README.txt
|
|
132
|
-
files:
|
|
118
|
+
files:
|
|
133
119
|
- .autotest
|
|
134
120
|
- History.txt
|
|
135
121
|
- Manifest.txt
|
|
@@ -140,40 +126,29 @@ files:
|
|
|
140
126
|
- bin/omnifocus_new
|
|
141
127
|
- lib/omnifocus.rb
|
|
142
128
|
homepage: https://github.com/seattlerb/omnifocus
|
|
143
|
-
licenses:
|
|
144
|
-
|
|
129
|
+
licenses:
|
|
130
|
+
- MIT
|
|
131
|
+
metadata: {}
|
|
145
132
|
post_install_message:
|
|
146
|
-
rdoc_options:
|
|
133
|
+
rdoc_options:
|
|
147
134
|
- --main
|
|
148
135
|
- README.txt
|
|
149
|
-
require_paths:
|
|
136
|
+
require_paths:
|
|
150
137
|
- lib
|
|
151
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
161
|
-
none: false
|
|
162
|
-
requirements:
|
|
163
|
-
- - ">="
|
|
164
|
-
- !ruby/object:Gem::Version
|
|
165
|
-
hash: 25
|
|
166
|
-
segments:
|
|
167
|
-
- 1
|
|
168
|
-
- 3
|
|
169
|
-
- 1
|
|
138
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
139
|
+
requirements:
|
|
140
|
+
- - '>='
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: '0'
|
|
143
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
|
+
requirements:
|
|
145
|
+
- - '>='
|
|
146
|
+
- !ruby/object:Gem::Version
|
|
170
147
|
version: 1.3.1
|
|
171
148
|
requirements: []
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
rubygems_version: 1.8.25
|
|
149
|
+
rubyforge_project: omnifocus
|
|
150
|
+
rubygems_version: 2.2.1
|
|
175
151
|
signing_key:
|
|
176
|
-
specification_version:
|
|
152
|
+
specification_version: 4
|
|
177
153
|
summary: Synchronizes bug tracking systems to omnifocus.
|
|
178
154
|
test_files: []
|
|
179
|
-
|
metadata.gz.sig
CHANGED
|
Binary file
|