ticketmaster-github 0.5.1 → 0.5.2
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/.gitignore +25 -0
- data/VERSION +1 -1
- data/lib/provider/ticket.rb +1 -1
- data/ticketmaster-github.gemspec +34 -31
- metadata +9 -8
data/.gitignore
ADDED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.2
|
data/lib/provider/ticket.rb
CHANGED
|
@@ -12,8 +12,8 @@ module TicketMaster::Provider
|
|
|
12
12
|
project_id = object.shift
|
|
13
13
|
if object.first
|
|
14
14
|
object = object.first
|
|
15
|
-
@system_data = {:client => object}
|
|
16
15
|
unless object.is_a? Hash
|
|
16
|
+
@system_data = {:client => object}
|
|
17
17
|
hash = {:title => object.title,
|
|
18
18
|
:created_at => object.created_at,
|
|
19
19
|
:updated_at => object.updated_at,
|
data/ticketmaster-github.gemspec
CHANGED
|
@@ -1,59 +1,62 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ticketmaster-github}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["HybridGroup"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-05-08}
|
|
13
13
|
s.description = %q{This provides an interface with github through the ticketmaster gem.}
|
|
14
14
|
s.email = %q{hong.quach@abigfisch.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
17
|
-
|
|
17
|
+
"README.md"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
20
|
".document",
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.md",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/provider/comment.rb",
|
|
27
|
+
"lib/provider/github.rb",
|
|
28
|
+
"lib/provider/project.rb",
|
|
29
|
+
"lib/provider/ticket.rb",
|
|
30
|
+
"lib/ticketmaster-github.rb",
|
|
31
|
+
"spec/comment_spec.rb",
|
|
32
|
+
"spec/factories/comment.rb",
|
|
33
|
+
"spec/factories/issue.rb",
|
|
34
|
+
"spec/factories/repository.rb",
|
|
35
|
+
"spec/project_spec.rb",
|
|
36
|
+
"spec/spec.opts",
|
|
37
|
+
"spec/spec_helper.rb",
|
|
38
|
+
"spec/ticket_spec.rb",
|
|
39
|
+
"spec/ticketmaster-github_spec.rb",
|
|
40
|
+
"ticketmaster-github.gemspec"
|
|
40
41
|
]
|
|
41
42
|
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-github}
|
|
43
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
42
44
|
s.require_paths = ["lib"]
|
|
43
|
-
s.rubygems_version = %q{1.
|
|
45
|
+
s.rubygems_version = %q{1.3.7}
|
|
44
46
|
s.summary = %q{The github provider for ticketmaster}
|
|
45
47
|
s.test_files = [
|
|
46
48
|
"spec/comment_spec.rb",
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
"spec/factories/comment.rb",
|
|
50
|
+
"spec/factories/issue.rb",
|
|
51
|
+
"spec/factories/repository.rb",
|
|
52
|
+
"spec/project_spec.rb",
|
|
53
|
+
"spec/spec_helper.rb",
|
|
54
|
+
"spec/ticket_spec.rb",
|
|
55
|
+
"spec/ticketmaster-github_spec.rb"
|
|
54
56
|
]
|
|
55
57
|
|
|
56
58
|
if s.respond_to? :specification_version then
|
|
59
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
57
60
|
s.specification_version = 3
|
|
58
61
|
|
|
59
62
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
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: 15
|
|
5
|
+
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.5.2
|
|
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-
|
|
18
|
+
date: 2011-05-08 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -59,6 +59,7 @@ extra_rdoc_files:
|
|
|
59
59
|
- README.md
|
|
60
60
|
files:
|
|
61
61
|
- .document
|
|
62
|
+
- .gitignore
|
|
62
63
|
- LICENSE
|
|
63
64
|
- README.md
|
|
64
65
|
- Rakefile
|
|
@@ -83,8 +84,8 @@ homepage: http://github.com/kiafaldorius/ticketmaster-github
|
|
|
83
84
|
licenses: []
|
|
84
85
|
|
|
85
86
|
post_install_message:
|
|
86
|
-
rdoc_options:
|
|
87
|
-
|
|
87
|
+
rdoc_options:
|
|
88
|
+
- --charset=UTF-8
|
|
88
89
|
require_paths:
|
|
89
90
|
- lib
|
|
90
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -108,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
109
|
requirements: []
|
|
109
110
|
|
|
110
111
|
rubyforge_project:
|
|
111
|
-
rubygems_version: 1.
|
|
112
|
+
rubygems_version: 1.3.7
|
|
112
113
|
signing_key:
|
|
113
114
|
specification_version: 3
|
|
114
115
|
summary: The github provider for ticketmaster
|