omnifocus-redmine 1.2.2 → 1.2.3
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.
- data/History.txt +5 -0
- data/README.txt +24 -21
- data/Rakefile +1 -1
- data/lib/omnifocus/redmine.rb +1 -1
- metadata +34 -32
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -13,34 +13,37 @@ for the plugin to work.
|
|
13
13
|
The first time this runs it creates a yaml file in your home directory for
|
14
14
|
the configuration data.
|
15
15
|
|
16
|
-
|
16
|
+
* redmine_url is required. This is the base url for the redmine repository.
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
* user_id is required. To find your user id login and go to the my account
|
19
|
+
page. Your user_id is the number at the end of the url for my account.
|
20
20
|
|
21
|
-
|
22
|
-
|
21
|
+
* username is optional. It is used if the redmine server requires
|
22
|
+
authentication.
|
23
23
|
|
24
|
-
|
25
|
-
|
24
|
+
* password is optional. It is used if the redmine server requires
|
25
|
+
authentication.
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
"http://redmine_url/issues.xml?assigned_to_id=user_id".
|
27
|
+
* queries is optional. It is used for custom queries or multiple queries.
|
28
|
+
The queries config is an array of strings. The strings will be appended
|
29
|
+
to a query of the form:
|
31
30
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
31
|
+
"http://redmine_url/issues.xml?assigned_to_id=user_id"
|
32
|
+
|
33
|
+
* just_project is optional. It is used to configure how to name the
|
34
|
+
omnifocus projects used for issues. If just_project is true each redmine
|
35
|
+
project will correspond to an omnifocus project. If it is false the
|
36
|
+
omnifocus projects will be name with redmine_project-redmine_component.
|
36
37
|
|
37
38
|
Example:
|
38
|
-
|
39
|
-
|
40
|
-
:
|
41
|
-
:
|
42
|
-
:
|
43
|
-
:
|
39
|
+
|
40
|
+
---
|
41
|
+
user_id: 20
|
42
|
+
redmine_url: http://redmine/
|
43
|
+
username: me
|
44
|
+
password: 1234
|
45
|
+
queries: ["status_id=1", "status_id=2"]
|
46
|
+
just_project: false
|
44
47
|
|
45
48
|
== FEATURES/PROBLEMS:
|
46
49
|
|
data/Rakefile
CHANGED
data/lib/omnifocus/redmine.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omnifocus-redmine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 1.2.
|
9
|
+
- 3
|
10
|
+
version: 1.2.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- aja
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-08-
|
18
|
+
date: 2011-08-16 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +26,11 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 7
|
30
30
|
segments:
|
31
31
|
- 1
|
32
|
-
-
|
33
|
-
|
34
|
-
version: 1.3.1
|
32
|
+
- 4
|
33
|
+
version: "1.4"
|
35
34
|
type: :runtime
|
36
35
|
version_requirements: *id001
|
37
36
|
- !ruby/object:Gem::Dependency
|
@@ -58,11 +57,11 @@ dependencies:
|
|
58
57
|
requirements:
|
59
58
|
- - ~>
|
60
59
|
- !ruby/object:Gem::Version
|
61
|
-
hash:
|
60
|
+
hash: 27
|
62
61
|
segments:
|
63
62
|
- 2
|
64
|
-
-
|
65
|
-
version: "2.
|
63
|
+
- 12
|
64
|
+
version: "2.12"
|
66
65
|
type: :development
|
67
66
|
version_requirements: *id003
|
68
67
|
description: |-
|
@@ -74,34 +73,37 @@ description: |-
|
|
74
73
|
The first time this runs it creates a yaml file in your home directory for
|
75
74
|
the configuration data.
|
76
75
|
|
77
|
-
|
76
|
+
* redmine_url is required. This is the base url for the redmine repository.
|
78
77
|
|
79
|
-
|
80
|
-
|
78
|
+
* user_id is required. To find your user id login and go to the my account
|
79
|
+
page. Your user_id is the number at the end of the url for my account.
|
81
80
|
|
82
|
-
|
83
|
-
|
81
|
+
* username is optional. It is used if the redmine server requires
|
82
|
+
authentication.
|
84
83
|
|
85
|
-
|
86
|
-
|
84
|
+
* password is optional. It is used if the redmine server requires
|
85
|
+
authentication.
|
87
86
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
"http://redmine_url/issues.xml?assigned_to_id=user_id".
|
87
|
+
* queries is optional. It is used for custom queries or multiple queries.
|
88
|
+
The queries config is an array of strings. The strings will be appended
|
89
|
+
to a query of the form:
|
92
90
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
91
|
+
"http://redmine_url/issues.xml?assigned_to_id=user_id"
|
92
|
+
|
93
|
+
* just_project is optional. It is used to configure how to name the
|
94
|
+
omnifocus projects used for issues. If just_project is true each redmine
|
95
|
+
project will correspond to an omnifocus project. If it is false the
|
96
|
+
omnifocus projects will be name with redmine_project-redmine_component.
|
97
97
|
|
98
98
|
Example:
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
99
|
+
|
100
|
+
---
|
101
|
+
user_id: 20
|
102
|
+
redmine_url: http://redmine/
|
103
|
+
username: me
|
104
|
+
password: 1234
|
105
|
+
queries: ["status_id=1", "status_id=2"]
|
106
|
+
just_project: false
|
105
107
|
email:
|
106
108
|
- kushali@rubyforge.org
|
107
109
|
executables: []
|