omnifocus 2.1.6 → 2.2.0
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.txt +6 -0
- data/lib/omnifocus.rb +5 -3
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d99ed4f7c4ee142eaa5c30854d54f599e8c22379
|
|
4
|
+
data.tar.gz: 10187edbf02ba17526653349820d1f2f88921d19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46b085ff26b5f50ede1f21f7244b5d0e4cf3228e52d0b3134673874e51aeea08da4e8850f4bccbe697aa8be90254fa8b7b09eaaf8181ea0bc3be990244296ef2
|
|
7
|
+
data.tar.gz: cc6bc9bc18e095019c56de478be1cbbf23b249f06f183142f6ba8dc2fab6434609bda672c2a194a9275d3a40f5b667ef3bc95799db0e3c04160c50d03f8302d1
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.txt
CHANGED
data/lib/omnifocus.rb
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'appscript'
|
|
3
3
|
|
|
4
|
+
NERD_FOLDER = ENV["OF_FOLDER"] || "nerd"
|
|
5
|
+
|
|
4
6
|
class Appscript::Reference # :nodoc:
|
|
5
7
|
# HACK: There is apparently a bug in ruby 1.9 where if you have
|
|
6
8
|
# method_missing defined and do some action that calls to_ary, then
|
|
@@ -26,7 +28,7 @@ include Appscript
|
|
|
26
28
|
# bts_id: a string uniquely identifying a task: SYSTEM(-projectname)?#id
|
|
27
29
|
|
|
28
30
|
class OmniFocus
|
|
29
|
-
VERSION = "2.
|
|
31
|
+
VERSION = "2.2.0"
|
|
30
32
|
|
|
31
33
|
##
|
|
32
34
|
# bug_db = {
|
|
@@ -100,12 +102,12 @@ class OmniFocus
|
|
|
100
102
|
|
|
101
103
|
def nerd_projects
|
|
102
104
|
unless defined? @nerd_projects then
|
|
103
|
-
@nerd_projects = omnifocus.folders[
|
|
105
|
+
@nerd_projects = omnifocus.folders[NERD_FOLDER]
|
|
104
106
|
|
|
105
107
|
begin
|
|
106
108
|
@nerd_projects.get
|
|
107
109
|
rescue
|
|
108
|
-
make omnifocus, :folder,
|
|
110
|
+
make omnifocus, :folder, NERD_FOLDER
|
|
109
111
|
end
|
|
110
112
|
end
|
|
111
113
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omnifocus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- aja
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
xJcC6UN6NHMOVMyAXsr2HR0gRRx4ofN1LoP2KhXzSr8UMvQYlwPmE0N5GQv1b5AO
|
|
31
31
|
VpzF30vNaJK6ZT7xlIsIlwmH
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
|
-
date: 2015-
|
|
33
|
+
date: 2015-02-02 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: rb-appscript
|
|
@@ -147,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
147
147
|
version: 1.3.1
|
|
148
148
|
requirements: []
|
|
149
149
|
rubyforge_project:
|
|
150
|
-
rubygems_version: 2.4.
|
|
150
|
+
rubygems_version: 2.4.5
|
|
151
151
|
signing_key:
|
|
152
152
|
specification_version: 4
|
|
153
153
|
summary: Synchronizes bug tracking systems to omnifocus.
|
metadata.gz.sig
CHANGED
|
Binary file
|