omnifocus-github 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig CHANGED
Binary file
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.4.1 / 2013-04-09
2
+
3
+ * 1 bug fix:
4
+
5
+ * 2.0: Relaxing the json dependency to ~> 1.5.
6
+
1
7
  === 1.4.0 / 2012-11-23
2
8
 
3
9
  * 2 minor enhancements:
@@ -41,7 +47,10 @@
41
47
  * Added PREFIX constant for new omnifocus plugin filtering.
42
48
 
43
49
  === 1.0.1 / 2011-07-16
44
- * Fixed a bug. Only adds tickets assigned to user, not all tickets in project.
50
+
51
+ * 1 bug fix:
52
+
53
+ * Only adds tickets assigned to user, not all tickets in project.
45
54
 
46
55
  === 1.0.0 / 2009-07-28
47
56
 
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ Hoe.spec 'omnifocus-github' do
9
9
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
10
10
 
11
11
  dependency "omnifocus", "~> 1.4"
12
- dependency "json", "~> 1.5.0"
12
+ dependency "json", "~> 1.5"
13
13
 
14
14
  self.rubyforge_name = 'seattlerb'
15
15
  end
@@ -2,7 +2,7 @@ require 'open-uri'
2
2
  require 'json'
3
3
 
4
4
  module OmniFocus::Github
5
- VERSION = '1.4.0'
5
+ VERSION = "1.4.1"
6
6
  PREFIX = "GH"
7
7
 
8
8
  GH_API_DEFAULT = "https://api.github.com"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omnifocus-github
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
- - 0
10
- version: 1.4.0
9
+ - 1
10
+ version: 1.4.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Davis
@@ -36,7 +36,7 @@ cert_chain:
36
36
  FBHgymkyj/AOSqKRIpXPhjC6
37
37
  -----END CERTIFICATE-----
38
38
 
39
- date: 2012-11-23 00:00:00 Z
39
+ date: 2013-04-09 00:00:00 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: omnifocus
@@ -61,12 +61,11 @@ dependencies:
61
61
  requirements:
62
62
  - - ~>
63
63
  - !ruby/object:Gem::Version
64
- hash: 3
64
+ hash: 5
65
65
  segments:
66
66
  - 1
67
67
  - 5
68
- - 0
69
- version: 1.5.0
68
+ version: "1.5"
70
69
  type: :runtime
71
70
  version_requirements: *id002
72
71
  - !ruby/object:Gem::Dependency
@@ -77,11 +76,11 @@ dependencies:
77
76
  requirements:
78
77
  - - ~>
79
78
  - !ruby/object:Gem::Version
80
- hash: 29
79
+ hash: 21
81
80
  segments:
82
81
  - 4
83
- - 3
84
- version: "4.3"
82
+ - 7
83
+ version: "4.7"
85
84
  type: :development
86
85
  version_requirements: *id003
87
86
  - !ruby/object:Gem::Dependency
@@ -107,14 +106,44 @@ dependencies:
107
106
  requirements:
108
107
  - - ~>
109
108
  - !ruby/object:Gem::Version
110
- hash: 1
109
+ hash: 13
111
110
  segments:
112
111
  - 3
113
- - 3
114
- version: "3.3"
112
+ - 5
113
+ version: "3.5"
115
114
  type: :development
116
115
  version_requirements: *id005
117
- description: Plugin for omnifocus gem to provide github BTS synchronization.
116
+ description: |-
117
+ Plugin for omnifocus gem to provide github BTS synchronization.
118
+
119
+ Support for Github Enterprise:
120
+
121
+ In your git config, set the key omnifocus-github.accounts to a space
122
+ separated list of github accounts.
123
+
124
+ git config --global omnifocus-github.accounts "github myghe"
125
+
126
+ For each account API end point and authentication information are
127
+ should be stored in the git config under a key matching the
128
+ account. For example:
129
+
130
+ git config --global github.user me
131
+ git config --global github.password mypassword
132
+ git config --global myghe.api https://ghe.mydomain.com/api/v3
133
+ git config --global myghe.token 1a2b3c4d5e6f7e8d
134
+
135
+ For each account can you specify the following parameters:
136
+
137
+ * api - specify an API endpoint other than
138
+ https://api.github.com. This is so you can point this at your Github
139
+ Enterprise endpoint.
140
+
141
+ * user, password - A username and password pair for Basic http authentication.
142
+
143
+ * token - An OAuth bearer token for OAuth workflows.
144
+
145
+ If both a token and a username and password are supplied, the token
146
+ is used.
118
147
  email:
119
148
  - ryand-ruby@zenspider.com
120
149
  executables: []
@@ -162,9 +191,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
191
  requirements: []
163
192
 
164
193
  rubyforge_project: seattlerb
165
- rubygems_version: 1.8.24
194
+ rubygems_version: 1.8.25
166
195
  signing_key:
167
196
  specification_version: 3
168
- summary: Plugin for omnifocus gem to provide github BTS synchronization.
197
+ summary: Plugin for omnifocus gem to provide github BTS synchronization
169
198
  test_files: []
170
199
 
metadata.gz.sig CHANGED
Binary file