omnifocus-github 1.8.1 → 1.8.2

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: 22e6ccdb53208d0572ec0bf6ae3d500524ff9c68
4
- data.tar.gz: c3c85f9f40d58f35a71952d4a3296c66465498a2
3
+ metadata.gz: 52ff1e21fc5c42b203150d6f3ff34291aabbc751
4
+ data.tar.gz: d09a2a7745fd21da8a5eb7f5ccf09178894bbb7d
5
5
  SHA512:
6
- metadata.gz: a2238d03095cffbb063244748f929f9fd3d62a83318ce949f61440cc9ea056a08165f13597e7eff7a61aa39256dd1a34e105e3b899213633830c93f113109002
7
- data.tar.gz: 60c5137ce46c5fcc1a92798ccf1cabb93b1cf9e1ba02a55e472b4f04993f11ba9458b951498b4ef50f27d156e3a1e0d349301c98a0702387a7cdbd11063abcf2
6
+ metadata.gz: 6b16d4c716a45fb0d4d7ba8793d431b38ca89a1e52fcef0bc5972d196bf955ea038e500a85ec9e574777142b4f61ef00c48d26636af28b5eb72adbf406b2f805
7
+ data.tar.gz: 77c9bf14912ab47082438a17ab3ad66d2341540af71092701ec468a463cf0734cb86c4fd11f9cbfd4a86de97cf5a0f7003d2e19ca4ff1545999b7630982f1531
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,9 @@
1
+ === 1.8.2 / 2015-08-10
2
+
3
+ * 1 bug fix:
4
+
5
+ * Turn off explicit --global so git scoping can work. (maxim)
6
+
1
7
  === 1.8.1 / 2015-04-13
2
8
 
3
9
  * 1 bug fix:
@@ -1,6 +1,6 @@
1
1
  .autotest
2
- History.txt
2
+ History.rdoc
3
3
  Manifest.txt
4
- README.txt
4
+ README.rdoc
5
5
  Rakefile
6
6
  lib/omnifocus/github.rb
@@ -9,17 +9,17 @@ Plugin for omnifocus gem to provide github BTS synchronization.
9
9
 
10
10
  Support for Github Enterprise:
11
11
 
12
- In your git config, set the key omnifocus-github.accounts to a space
12
+ In your git config, set the key github.accounts to a space
13
13
  separated list of github accounts.
14
14
 
15
- git config --global omnifocus-github.accounts "github myghe"
15
+ git config --global github.accounts "github myghe"
16
16
 
17
17
  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 omnifocus-github.user me
22
- git config --global omnifocus-github.password mypassword
21
+ git config --global github.user me
22
+ git config --global 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,12 @@ 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 omnifocus-github.user 51951ceb3819276195e8525740bd4670232bc222
44
- git config --global omnifocus-github.password x-oauth-basic
45
- git config --global omnifocus-github.name me
43
+ git config --global github.user 51951ceb3819276195e8525740bd4670232bc222
44
+ git config --global github.password x-oauth-basic
45
+ git config --global github.name me
46
+ git config --global myghe.user d98ada440ce4b1853ced0e0cb83eb48b71a3e33d
47
+ git config --global myghe.password x-oauth-basic
48
+ git config --global myghe.name me
46
49
 
47
50
  == FEATURES/PROBLEMS:
48
51
 
@@ -58,6 +61,11 @@ These will need to be set, in addition to your Github username. For example:
58
61
 
59
62
  * sudo gem install omnifocus-github
60
63
 
64
+ = USAGE EXAMPLE:
65
+
66
+ * of sync
67
+
68
+ Will create an OF project under the nerd folder for each repo in Github with an open issue.
61
69
  == LICENSE:
62
70
 
63
71
  (The MIT License)
data/Rakefile CHANGED
@@ -4,6 +4,7 @@ require 'rubygems'
4
4
  require 'hoe'
5
5
 
6
6
  Hoe.plugin :seattlerb
7
+ Hoe.plugin :rdoc
7
8
 
8
9
  Hoe.spec 'omnifocus-github' do
9
10
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
@@ -5,7 +5,7 @@ $-w = old_w
5
5
  Octokit.auto_paginate = true
6
6
 
7
7
  module OmniFocus::Github
8
- VERSION = "1.8.1"
8
+ VERSION = "1.8.2"
9
9
  PREFIX = "GH"
10
10
 
11
11
  def populate_github_tasks
@@ -40,7 +40,7 @@ module OmniFocus::Github
40
40
  end
41
41
 
42
42
  def omnifocus_git_param name, default = nil, prefix = "omnifocus-github"
43
- param = `git config --global #{prefix}.#{name}`.chomp
43
+ param = `git config #{prefix}.#{name}`.chomp
44
44
  param.empty? ? default : param
45
45
  end
46
46
 
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.1
4
+ version: 1.8.2
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: 2015-04-13 00:00:00.000000000 Z
33
+ date: 2015-08-10 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.6'
69
+ version: '5.8'
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.6'
76
+ version: '5.8'
77
77
  - !ruby/object:Gem::Dependency
78
78
  name: rdoc
79
79
  requirement: !ruby/object:Gem::Requirement
@@ -103,32 +103,32 @@ dependencies:
103
103
  - !ruby/object:Gem::Version
104
104
  version: '3.13'
105
105
  description: "Plugin for omnifocus gem to provide github BTS synchronization.\n\nSupport
106
- for Github Enterprise:\n\nIn your git config, set the key omnifocus-github.accounts
107
- to a space\nseparated list of github accounts. \n\n git config --global omnifocus-github.accounts
108
- \"github myghe\"\n\nFor each account API and web end points and authentication information
109
- \nshould be stored in the git config under a key matching the\naccount. For example:\n\n
110
- \ git config --global omnifocus-github.user me\n git config --global omnifocus-github.password
111
- mypassword\n git config --global myghe.api https://ghe.mydomain.com/api/v3\n
112
- \ git config --global myghe.api https://ghe.mydomain.com/\n\nFor each account
113
- can you specify the following parameters:\n\n* api - specify an API endpoint other
114
- than\n https://api.github.com. This is so you can point this at your Github\n Enterprise
115
- endpoint.\n\n* web - specify an API endpoint other than https://www.github.com.
116
- This\n is so you can point this at your Github Enterprise endpoint\n\n* user, password
117
- - A username and password pair for Basic http authentication."
106
+ for Github Enterprise:\n\nIn your git config, set the key github.accounts to a space\nseparated
107
+ list of github accounts. \n\n git config --global github.accounts \"github myghe\"\n\nFor
108
+ each account API and web end points and authentication information \nshould be stored
109
+ in the git config under a key matching the\naccount. For example:\n\n git config
110
+ --global github.user me\n git config --global github.password mypassword\n git
111
+ config --global myghe.api https://ghe.mydomain.com/api/v3\n git config --global
112
+ myghe.api https://ghe.mydomain.com/\n\nFor each account can you specify the following
113
+ parameters:\n\n* api - specify an API endpoint other than\n https://api.github.com.
114
+ This is so you can point this at your Github\n Enterprise endpoint.\n\n* web -
115
+ specify an API endpoint other than https://www.github.com. This\n is so you can
116
+ point this at your Github Enterprise endpoint\n\n* user, password - A username and
117
+ password pair for Basic http authentication."
118
118
  email:
119
119
  - ryand-ruby@zenspider.com
120
120
  - kushali@rubyforge.org
121
121
  executables: []
122
122
  extensions: []
123
123
  extra_rdoc_files:
124
- - History.txt
124
+ - History.rdoc
125
125
  - Manifest.txt
126
- - README.txt
126
+ - README.rdoc
127
127
  files:
128
128
  - .autotest
129
- - History.txt
129
+ - History.rdoc
130
130
  - Manifest.txt
131
- - README.txt
131
+ - README.rdoc
132
132
  - Rakefile
133
133
  - lib/omnifocus/github.rb
134
134
  homepage: https://github.com/seattlerb/omnifocus-github
@@ -138,7 +138,7 @@ metadata: {}
138
138
  post_install_message:
139
139
  rdoc_options:
140
140
  - --main
141
- - README.txt
141
+ - README.rdoc
142
142
  require_paths:
143
143
  - lib
144
144
  required_ruby_version: !ruby/object:Gem::Requirement
metadata.gz.sig CHANGED
Binary file