omnifocus-bugzilla 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 1.1.2 / 2011-07-19
2
+ * 1 bug fix:
3
+
4
+ * Added PREFIX const for new filtering system
5
+
1
6
  === 1.1.1 / 2010-12-14
2
7
  * Fixed a hardcoded url
3
8
 
data/README.txt CHANGED
@@ -1,6 +1,7 @@
1
- = omnifocus_bugzilla
1
+ = omnifocus-bugzilla
2
2
 
3
- * http://rubyforge.org/projects/seattlerb
3
+ home :: https://github.com/seattlerb/omnifocus-bugzilla
4
+ rdoc :: http://seattlerb.rubyforge.org/omnifocus-bugzilla
4
5
 
5
6
  == DESCRIPTION:
6
7
 
@@ -41,7 +42,7 @@ Example:
41
42
 
42
43
  (The MIT License)
43
44
 
44
- Copyright (c) 2009 Aja Hammerly
45
+ Copyright (c) Aja Hammerly, seattle.rb
45
46
 
46
47
  Permission is hereby granted, free of charge, to any person obtaining
47
48
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ Hoe.plugin :seattlerb
8
8
  Hoe.spec 'omnifocus-bugzilla' do
9
9
  developer('aja', 'kushali@rubyforge.org')
10
10
 
11
- extra_deps << 'omnifocus'
11
+ extra_deps << ["omnifocus", "~> 1.3.1"]
12
12
  end
13
13
 
14
14
  # vim: syntax=ruby
@@ -1,5 +1,6 @@
1
1
  module OmniFocus::Bugzilla
2
- VERSION = '1.1.1'
2
+ VERSION = '1.1.2'
3
+ PREFIX = "BZ"
3
4
 
4
5
  def load_or_create_config
5
6
  path = File.expand_path "~/.omnifocus-bugzilla.yml"
@@ -45,7 +46,7 @@ module OmniFocus::Bugzilla
45
46
 
46
47
  bugs.each do |bug|
47
48
  bug_number = $1 if bug.inner_html =~ /show_bug.cgi\?id=(\d*)/
48
- ticket_id = "BZ##{bug_number}"
49
+ ticket_id = "#{PREFIX}##{bug_number}"
49
50
 
50
51
  if existing[ticket_id]
51
52
  project = existing[ticket_id]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omnifocus-bugzilla
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease: false
4
+ hash: 23
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
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: 2010-12-14 00:00:00 -08:00
18
+ date: 2011-07-19 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -24,12 +24,14 @@ dependencies:
24
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ">="
27
+ - - ~>
28
28
  - !ruby/object:Gem::Version
29
- hash: 3
29
+ hash: 25
30
30
  segments:
31
- - 0
32
- version: "0"
31
+ - 1
32
+ - 3
33
+ - 1
34
+ version: 1.3.1
33
35
  type: :runtime
34
36
  version_requirements: *id001
35
37
  - !ruby/object:Gem::Dependency
@@ -40,12 +42,12 @@ dependencies:
40
42
  requirements:
41
43
  - - ">="
42
44
  - !ruby/object:Gem::Version
43
- hash: 15
45
+ hash: 11
44
46
  segments:
45
- - 1
46
- - 7
47
47
  - 2
48
- version: 1.7.2
48
+ - 0
49
+ - 2
50
+ version: 2.0.2
49
51
  type: :development
50
52
  version_requirements: *id002
51
53
  - !ruby/object:Gem::Dependency
@@ -54,14 +56,13 @@ dependencies:
54
56
  requirement: &id003 !ruby/object:Gem::Requirement
55
57
  none: false
56
58
  requirements:
57
- - - ">="
59
+ - - ~>
58
60
  - !ruby/object:Gem::Version
59
- hash: 47
61
+ hash: 23
60
62
  segments:
61
63
  - 2
62
- - 8
63
- - 0
64
- version: 2.8.0
64
+ - 10
65
+ version: "2.10"
65
66
  type: :development
66
67
  version_requirements: *id003
67
68
  description: "Plugin for omnifocus gem to provide bugzilla BTS synchronization.\n\n\
@@ -97,7 +98,7 @@ files:
97
98
  - Rakefile
98
99
  - lib/omnifocus/bugzilla.rb
99
100
  has_rdoc: true
100
- homepage: http://rubyforge.org/projects/seattlerb
101
+ homepage: https://github.com/seattlerb/omnifocus-bugzilla
101
102
  licenses: []
102
103
 
103
104
  post_install_message:
@@ -127,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
128
  requirements: []
128
129
 
129
130
  rubyforge_project: omnifocus-bugzilla
130
- rubygems_version: 1.3.7
131
+ rubygems_version: 1.4.2
131
132
  signing_key:
132
133
  specification_version: 3
133
134
  summary: Plugin for omnifocus gem to provide bugzilla BTS synchronization