omnifocus-github 1.8.3 → 1.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '07780f3d65b81ab4393b6726d8eae5b3ffe21d871a4eeee854ac16e4d56d655a'
4
- data.tar.gz: 5cb9117304f6048f77f81bd72af5b3e0a92e7099a5a0b97308d5211a7f68d6fc
3
+ metadata.gz: 33de15bbd7d3a7f67dbb3bdaee2a0c7e6e450760226661751521b9f7027db900
4
+ data.tar.gz: cbb1e9c80d0d536fbff4b182a85a81d413b1e84653add6d75eb002fafe2ab466
5
5
  SHA512:
6
- metadata.gz: e024d61f799ad910ffdd8166412c94b819d2224a4961ee60a90f80e78960ba5c29e179e014f65ff360357eb5c3d9d4310aebfdf2ff48ce9f661e9ae89cb43822
7
- data.tar.gz: 9885d104308799e749deb62faca18fadd478ce6fbc2e8771b94978c2fa785b645520cf107a536d9fc8730a8cc687201fde5269bfee3f6839feaaf5662679b6ed
6
+ metadata.gz: b96afcbf082d5096f0c016778964174a086ac9c5eed04d913e6100cf948f09e1e91a7b937c0d6b37d7c3d4220145b5fda09921089556f07d172c518066479223
7
+ data.tar.gz: 7c476a4bb8af78f029b87feb8e1b9d67b696e4921b6fecdc97bfaee6cb0969d2c83f1c4b153c2a07d1bdec86840c80526a68a6d9a2b82c54b7f4ef2d82d94510
Binary file
data.tar.gz.sig CHANGED
@@ -1,2 +1,4 @@
1
- #?��2�zc��R��JSP-�#1dl��9�꣏��h��^C<q�Q ���$� S�:[�`{�3PD�k� S5+�v��U�]�"%��x]��3gi.�}C�Z,��o���� Td��QR߭s;�M]�OT���I F�c���卷���P��f~�c˭���!���[z<�2U2S_� �3��r��Ͱ%�d<0��)7�-�g�Ҵyۤ �
2
- h�
1
+ ��7y��y1�R�Nݢ��.��~Q���v
2
+ ���-#�
3
+ Ҩ 6��/�"��tAG�r������_ ��!`��}�m�3Xa�@�\jN#0ʤZ�|0#M��K�{u�bɼ�U�A�޶��B�őn�VmЛI�{۞��7:Õ#+n�S}v]�����h
4
+ �a�[���˥ǥ��L��Ƽ#���q�.d���c7�����N���3��3���@��XyQ\N}
@@ -1,3 +1,10 @@
1
+ === 1.9.0 / 2020-02-12
2
+
3
+ * 2 minor enhancements:
4
+
5
+ * Exclude projects listed in ~/.omnifocus.yml.
6
+ * Updated to use omnifocus 2.6+.
7
+
1
8
  === 1.8.3 / 2019-12-15
2
9
 
3
10
  * 1 bug fix:
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ Hoe.spec 'omnifocus-github' do
12
12
 
13
13
  license "MIT"
14
14
 
15
- dependency "omnifocus", "~> 2.5"
15
+ dependency "omnifocus", "~> 2.6"
16
16
  dependency "octokit", "~> 4.14"
17
17
  end
18
18
 
@@ -5,7 +5,7 @@ $-w = old_w
5
5
  Octokit.auto_paginate = true
6
6
 
7
7
  module OmniFocus::Github
8
- VERSION = "1.8.3"
8
+ VERSION = "1.9.0"
9
9
  PREFIX = "GH"
10
10
 
11
11
  def populate_github_tasks
@@ -81,6 +81,8 @@ module OmniFocus::Github
81
81
  url = "https://github.com/#{issue.repository.full_name}/issues/#{number}"
82
82
  note = "#{url}\n\n#{issue["body"]}"
83
83
 
84
+ next if excluded_projects.include? project
85
+
84
86
  if existing[ticket_id] then
85
87
  bug_db[project][ticket_id] = true
86
88
  next
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omnifocus-github
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.3
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -30,7 +30,7 @@ cert_chain:
30
30
  m5x9IDiApM+vCELNwDXXGNFEnQBBK+wAe4Pek8o1V1TTOxL1kGPewVOitX1p3xoN
31
31
  h7iEjga8iM1LbZUfiISZ+WrB
32
32
  -----END CERTIFICATE-----
33
- date: 2019-12-16 00:00:00.000000000 Z
33
+ date: 2020-02-13 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: omnifocus
@@ -38,14 +38,14 @@ dependencies:
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: '2.5'
41
+ version: '2.6'
42
42
  type: :runtime
43
43
  prerelease: false
44
44
  version_requirements: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: '2.5'
48
+ version: '2.6'
49
49
  - !ruby/object:Gem::Dependency
50
50
  name: octokit
51
51
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '3.20'
89
+ version: '3.22'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '3.20'
96
+ version: '3.22'
97
97
  description: "Plugin for omnifocus gem to provide github BTS synchronization.\n\nSupport
98
98
  for Github Enterprise:\n\nIn your git config, set the key github.accounts to a space\nseparated
99
99
  list of github accounts. \n\n git config --global github.accounts \"github myghe\"\n\nFor
metadata.gz.sig CHANGED
Binary file