omnifocus-redmine 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +5 -0
  2. data/README.txt +24 -21
  3. data/Rakefile +1 -1
  4. data/lib/omnifocus/redmine.rb +1 -1
  5. metadata +34 -32
@@ -1,3 +1,8 @@
1
+ === 1.2.3 / 2011-08-03
2
+ * 1 bug fix:
3
+
4
+ * Fixed format of README
5
+
1
6
  === 1.2.2 / 2011-07-19
2
7
  * 1 bug fix:
3
8
 
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
- * redmine_url is required. This is the base url for the redmine repository.
16
+ * redmine_url is required. This is the base url for the redmine repository.
17
17
 
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.
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
- * username is optional. It is used if the redmine server requires
22
- authentication.
21
+ * username is optional. It is used if the redmine server requires
22
+ authentication.
23
23
 
24
- * password is optional. It is used if the redmine server requires
25
- authentication.
24
+ * password is optional. It is used if the redmine server requires
25
+ authentication.
26
26
 
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:
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
- * just_project is optional. It is used to configure how to name the
33
- omnifocus projects used for issues. If just_project is true each redmine
34
- project will correspond to an omnifocus project. If it is false the
35
- omnifocus projects will be name with redmine_project-redmine_component.
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
- :user_id: 20
39
- :redmine_url: http://redmine/
40
- :username: me
41
- :password: 1234
42
- :queries: ["status_id=1", "status_id=2"]
43
- :just_project: false
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
@@ -9,7 +9,7 @@ Hoe.plugins.delete :rubyforge
9
9
  Hoe.spec 'omnifocus-redmine' do
10
10
  developer('aja', 'kushali@rubyforge.org')
11
11
 
12
- extra_deps << ["omnifocus", "~> 1.3.1"]
12
+ dependency "omnifocus", "~> 1.4"
13
13
  self.rubyforge_name = 'seattlerb'
14
14
  end
15
15
 
@@ -1,5 +1,5 @@
1
1
  module OmniFocus::Redmine
2
- VERSION = '1.2.2'
2
+ VERSION = '1.2.3'
3
3
  PREFIX = "RM"
4
4
 
5
5
  def load_or_create_redmine_config
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: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- - 2
10
- version: 1.2.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-03 00:00:00 -07:00
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: 25
29
+ hash: 7
30
30
  segments:
31
31
  - 1
32
- - 3
33
- - 1
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: 23
60
+ hash: 27
62
61
  segments:
63
62
  - 2
64
- - 10
65
- version: "2.10"
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
- * redmine_url is required. This is the base url for the redmine repository.
76
+ * redmine_url is required. This is the base url for the redmine repository.
78
77
 
79
- * user_id is required. To find your user id login and go to the my account
80
- page. Your user_id is the number at the end of the url for my account.
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
- * username is optional. It is used if the redmine server requires
83
- authentication.
81
+ * username is optional. It is used if the redmine server requires
82
+ authentication.
84
83
 
85
- * password is optional. It is used if the redmine server requires
86
- authentication.
84
+ * password is optional. It is used if the redmine server requires
85
+ authentication.
87
86
 
88
- * queries is optional. It is used for custom queries or multiple queries.
89
- The queries config is an array of strings. The strings will be appended
90
- to a query of the form:
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
- * 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.
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
- :user_id: 20
100
- :redmine_url: http://redmine/
101
- :username: me
102
- :password: 1234
103
- :queries: ["status_id=1", "status_id=2"]
104
- :just_project: false
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: []