omnifocus-github 1.8.0 → 1.8.1

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
  SHA1:
3
- metadata.gz: 4fb93682172ee4033f10ba399f3a0cc59e976fd1
4
- data.tar.gz: 5740b8d4eaedc2f87ccb6a12aa6536de61d77457
3
+ metadata.gz: 22e6ccdb53208d0572ec0bf6ae3d500524ff9c68
4
+ data.tar.gz: c3c85f9f40d58f35a71952d4a3296c66465498a2
5
5
  SHA512:
6
- metadata.gz: 03f53ae5ecd352ded61b587dbbb3015852d21bf1c96b61b28388b8525a2133d59033a98fcdca5fa65450b8ab0877a62e4cc6f90863d00e043ba2c380869a2772
7
- data.tar.gz: 7a23c02c27cecb88fde9b29ed126e40b9c37197dea95bd21ac78545e6a60b86bd2ce2c9e370ce4a3f948c72dd0c5f5100c0af17d75cef45528dc9d5174aaee4c
6
+ metadata.gz: a2238d03095cffbb063244748f929f9fd3d62a83318ce949f61440cc9ea056a08165f13597e7eff7a61aa39256dd1a34e105e3b899213633830c93f113109002
7
+ data.tar.gz: 60c5137ce46c5fcc1a92798ccf1cabb93b1cf9e1ba02a55e472b4f04993f11ba9458b951498b4ef50f27d156e3a1e0d349301c98a0702387a7cdbd11063abcf2
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.8.1 / 2015-04-13
2
+
3
+ * 1 bug fix:
4
+
5
+ * Fixed readme to reflect new(er) git config prefixes. (maxim)
6
+
1
7
  === 1.8.0 / 2014-11-11
2
8
 
3
9
  * 1 minor enhancement:
data/README.txt CHANGED
@@ -18,8 +18,8 @@ For each account API and web end points and authentication information
18
18
  should be stored in the git config under a key matching the
19
19
  account. For example:
20
20
 
21
- git config --global github.user me
22
- git config --global github.password mypassword
21
+ git config --global omnifocus-github.user me
22
+ git config --global omnifocus-github.password mypassword
23
23
  git config --global myghe.api https://ghe.mydomain.com/api/v3
24
24
  git config --global myghe.api https://ghe.mydomain.com/
25
25
 
@@ -40,9 +40,9 @@ When using OAuth, Github expects the OAuth token to be presented as your
40
40
  username, and your password should either be blank or set to 'x-oauth-basic'.
41
41
  These will need to be set, in addition to your Github username. For example:
42
42
 
43
- git config --global github.user 51951ceb3819276195e8525740bd4670232bc222
44
- git config --global github.password x-oauth-basic
45
- git config --global github.name me
43
+ git config --global omnifocus-github.user 51951ceb3819276195e8525740bd4670232bc222
44
+ git config --global omnifocus-github.password x-oauth-basic
45
+ git config --global omnifocus-github.name me
46
46
 
47
47
  == FEATURES/PROBLEMS:
48
48
 
@@ -5,7 +5,7 @@ $-w = old_w
5
5
  Octokit.auto_paginate = true
6
6
 
7
7
  module OmniFocus::Github
8
- VERSION = "1.8.0"
8
+ VERSION = "1.8.1"
9
9
  PREFIX = "GH"
10
10
 
11
11
  def populate_github_tasks
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.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -30,7 +30,7 @@ cert_chain:
30
30
  xJcC6UN6NHMOVMyAXsr2HR0gRRx4ofN1LoP2KhXzSr8UMvQYlwPmE0N5GQv1b5AO
31
31
  VpzF30vNaJK6ZT7xlIsIlwmH
32
32
  -----END CERTIFICATE-----
33
- date: 2014-11-11 00:00:00.000000000 Z
33
+ date: 2015-04-13 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: omnifocus
@@ -66,14 +66,14 @@ dependencies:
66
66
  requirements:
67
67
  - - ~>
68
68
  - !ruby/object:Gem::Version
69
- version: '5.4'
69
+ version: '5.6'
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ~>
75
75
  - !ruby/object:Gem::Version
76
- version: '5.4'
76
+ version: '5.6'
77
77
  - !ruby/object:Gem::Dependency
78
78
  name: rdoc
79
79
  requirement: !ruby/object:Gem::Requirement
@@ -107,7 +107,7 @@ description: "Plugin for omnifocus gem to provide github BTS synchronization.\n\
107
107
  to a space\nseparated list of github accounts. \n\n git config --global omnifocus-github.accounts
108
108
  \"github myghe\"\n\nFor each account API and web end points and authentication information
109
109
  \nshould be stored in the git config under a key matching the\naccount. For example:\n\n
110
- \ git config --global github.user me\n git config --global github.password
110
+ \ git config --global omnifocus-github.user me\n git config --global omnifocus-github.password
111
111
  mypassword\n git config --global myghe.api https://ghe.mydomain.com/api/v3\n
112
112
  \ git config --global myghe.api https://ghe.mydomain.com/\n\nFor each account
113
113
  can you specify the following parameters:\n\n* api - specify an API endpoint other
@@ -153,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  version: '0'
154
154
  requirements: []
155
155
  rubyforge_project:
156
- rubygems_version: 2.4.1
156
+ rubygems_version: 2.4.5
157
157
  signing_key:
158
158
  specification_version: 4
159
159
  summary: Plugin for omnifocus gem to provide github BTS synchronization
metadata.gz.sig CHANGED
Binary file