ticketmaster-github 0.6.7 → 0.6.8
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/VERSION +1 -1
- data/lib/provider/ticket.rb +7 -2
- data/ticketmaster-github.gemspec +75 -74
- metadata +6 -6
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.8
|
data/lib/provider/ticket.rb
CHANGED
@@ -21,16 +21,21 @@ module TicketMaster::Provider
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def author
|
24
|
-
self.user
|
24
|
+
self.user
|
25
25
|
end
|
26
26
|
|
27
27
|
def requestor
|
28
|
-
self.user
|
28
|
+
self.user
|
29
|
+
end
|
30
|
+
|
31
|
+
def assignee
|
32
|
+
self.user
|
29
33
|
end
|
30
34
|
|
31
35
|
def self.find_by_id(project_id, number)
|
32
36
|
issue = TicketMaster::Provider::Github.api.issue(project_id, number)
|
33
37
|
issue.merge!(:project_id => project_id)
|
38
|
+
puts issue.inspect
|
34
39
|
self.new issue
|
35
40
|
end
|
36
41
|
|
data/ticketmaster-github.gemspec
CHANGED
@@ -1,74 +1,75 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{ticketmaster-github}
|
8
|
-
s.version = "0.6.
|
9
|
-
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["HybridGroup"]
|
12
|
-
s.date = %q{2011-07-
|
13
|
-
s.description = %q{This provides an interface with github through the ticketmaster gem.}
|
14
|
-
s.email = %q{hong.quach@abigfisch.com}
|
15
|
-
s.extra_rdoc_files = [
|
16
|
-
"LICENSE",
|
17
|
-
"README.md"
|
18
|
-
]
|
19
|
-
s.files = [
|
20
|
-
".document",
|
21
|
-
"LICENSE",
|
22
|
-
"README.md",
|
23
|
-
"Rakefile",
|
24
|
-
"VERSION",
|
25
|
-
"lib/provider/comment.rb",
|
26
|
-
"lib/provider/github.rb",
|
27
|
-
"lib/provider/project.rb",
|
28
|
-
"lib/provider/ticket.rb",
|
29
|
-
"lib/ticketmaster-github.rb",
|
30
|
-
"spec/comment_spec.rb",
|
31
|
-
"spec/factories/comment.rb",
|
32
|
-
"spec/factories/issue.rb",
|
33
|
-
"spec/factories/repository.rb",
|
34
|
-
"spec/project_spec.rb",
|
35
|
-
"spec/spec.opts",
|
36
|
-
"spec/spec_helper.rb",
|
37
|
-
"spec/ticket_spec.rb",
|
38
|
-
"spec/ticketmaster-github_spec.rb",
|
39
|
-
"ticketmaster-github.gemspec"
|
40
|
-
]
|
41
|
-
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-github}
|
42
|
-
s.require_paths = ["lib"]
|
43
|
-
s.rubygems_version = %q{1.
|
44
|
-
s.summary = %q{The github provider for ticketmaster}
|
45
|
-
s.test_files = [
|
46
|
-
"spec/comment_spec.rb",
|
47
|
-
"spec/factories/comment.rb",
|
48
|
-
"spec/factories/issue.rb",
|
49
|
-
"spec/factories/repository.rb",
|
50
|
-
"spec/project_spec.rb",
|
51
|
-
"spec/spec_helper.rb",
|
52
|
-
"spec/ticket_spec.rb",
|
53
|
-
"spec/ticketmaster-github_spec.rb"
|
54
|
-
]
|
55
|
-
|
56
|
-
if s.respond_to? :specification_version then
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
s.
|
62
|
-
s.add_runtime_dependency(%q<
|
63
|
-
|
64
|
-
|
65
|
-
s.add_dependency(%q<
|
66
|
-
s.add_dependency(%q<
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
s.add_dependency(%q<
|
71
|
-
s.add_dependency(%q<
|
72
|
-
|
73
|
-
end
|
74
|
-
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{ticketmaster-github}
|
8
|
+
s.version = "0.6.8"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["HybridGroup"]
|
12
|
+
s.date = %q{2011-07-20}
|
13
|
+
s.description = %q{This provides an interface with github through the ticketmaster gem.}
|
14
|
+
s.email = %q{hong.quach@abigfisch.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.md"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
"LICENSE",
|
22
|
+
"README.md",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"lib/provider/comment.rb",
|
26
|
+
"lib/provider/github.rb",
|
27
|
+
"lib/provider/project.rb",
|
28
|
+
"lib/provider/ticket.rb",
|
29
|
+
"lib/ticketmaster-github.rb",
|
30
|
+
"spec/comment_spec.rb",
|
31
|
+
"spec/factories/comment.rb",
|
32
|
+
"spec/factories/issue.rb",
|
33
|
+
"spec/factories/repository.rb",
|
34
|
+
"spec/project_spec.rb",
|
35
|
+
"spec/spec.opts",
|
36
|
+
"spec/spec_helper.rb",
|
37
|
+
"spec/ticket_spec.rb",
|
38
|
+
"spec/ticketmaster-github_spec.rb",
|
39
|
+
"ticketmaster-github.gemspec"
|
40
|
+
]
|
41
|
+
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-github}
|
42
|
+
s.require_paths = ["lib"]
|
43
|
+
s.rubygems_version = %q{1.3.7}
|
44
|
+
s.summary = %q{The github provider for ticketmaster}
|
45
|
+
s.test_files = [
|
46
|
+
"spec/comment_spec.rb",
|
47
|
+
"spec/factories/comment.rb",
|
48
|
+
"spec/factories/issue.rb",
|
49
|
+
"spec/factories/repository.rb",
|
50
|
+
"spec/project_spec.rb",
|
51
|
+
"spec/spec_helper.rb",
|
52
|
+
"spec/ticket_spec.rb",
|
53
|
+
"spec/ticketmaster-github_spec.rb"
|
54
|
+
]
|
55
|
+
|
56
|
+
if s.respond_to? :specification_version then
|
57
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
58
|
+
s.specification_version = 3
|
59
|
+
|
60
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
61
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
62
|
+
s.add_runtime_dependency(%q<ticketmaster>, [">= 0.6.0"])
|
63
|
+
s.add_runtime_dependency(%q<octokit>, [">= 0.6.4"])
|
64
|
+
else
|
65
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
66
|
+
s.add_dependency(%q<ticketmaster>, [">= 0.6.0"])
|
67
|
+
s.add_dependency(%q<octokit>, [">= 0.6.4"])
|
68
|
+
end
|
69
|
+
else
|
70
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
71
|
+
s.add_dependency(%q<ticketmaster>, [">= 0.6.0"])
|
72
|
+
s.add_dependency(%q<octokit>, [">= 0.6.4"])
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ticketmaster-github
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 8
|
10
|
+
version: 0.6.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- HybridGroup
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-07-
|
18
|
+
date: 2011-07-20 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
requirements: []
|
127
127
|
|
128
128
|
rubyforge_project:
|
129
|
-
rubygems_version: 1.
|
129
|
+
rubygems_version: 1.3.7
|
130
130
|
signing_key:
|
131
131
|
specification_version: 3
|
132
132
|
summary: The github provider for ticketmaster
|