ticketmaster-lighthouse 0.5.6 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -0
- data/VERSION +1 -1
- data/lib/ticketmaster-lighthouse.rb +10 -0
- data/ticketmaster-lighthouse.gemspec +3 -3
- metadata +5 -5
data/README.md
CHANGED
@@ -5,6 +5,7 @@ This is a provider for [ticketmaster](http://ticketrb.com). It provides interope
|
|
5
5
|
# Usage and Examples
|
6
6
|
|
7
7
|
First we have to instantiate a new ticketmaster instance:
|
8
|
+
|
8
9
|
lighthouse = TicketMaster.new(:lighthouse, {:subdomain => "rails"})
|
9
10
|
lighthouse = TicketMaster.new(:lighthouse, {:username => "code", :password => "m4st3r!", :account => "ticketmaster"})
|
10
11
|
lighthouse = TicketMaster.new(:lighthouse, {:token => "5ff546af3df4a3c02d3a719b0ff1c3fcc5351c97", :account => "lhdemo"})
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.7
|
@@ -3,6 +3,16 @@ require 'lighthouse-api'
|
|
3
3
|
# Monkey Patch - remove when the lighthouse gem gets updated.
|
4
4
|
# texel's changes got merged, but looks like a new gem didn't get released. ugh!
|
5
5
|
module Lighthouse
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def account=(value)
|
9
|
+
@account = value
|
10
|
+
resources.each do |resource|
|
11
|
+
update_site(resource)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
6
16
|
class Ticket
|
7
17
|
protected
|
8
18
|
def cleanup_tags(tags)
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{ticketmaster-lighthouse}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Hong"]
|
12
|
-
s.date = %q{2011-04
|
12
|
+
s.date = %q{2011-05-04}
|
13
13
|
s.description = %q{Allows ticketmaster to interact with Lighthouse's issue tracking system.}
|
14
14
|
s.email = %q{hong.quach@abigfisch.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -44,7 +44,7 @@ Gem::Specification.new do |s|
|
|
44
44
|
]
|
45
45
|
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-lighthouse}
|
46
46
|
s.require_paths = ["lib"]
|
47
|
-
s.rubygems_version = %q{1.6.
|
47
|
+
s.rubygems_version = %q{1.6.0}
|
48
48
|
s.summary = %q{Ticketmaster Provider for Lighthouse}
|
49
49
|
s.test_files = [
|
50
50
|
"spec/comments_spec.rb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ticketmaster-lighthouse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 7
|
10
|
+
version: 0.5.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Hong
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-04
|
18
|
+
date: 2011-05-04 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -177,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
177
|
requirements: []
|
178
178
|
|
179
179
|
rubyforge_project:
|
180
|
-
rubygems_version: 1.6.
|
180
|
+
rubygems_version: 1.6.0
|
181
181
|
signing_key:
|
182
182
|
specification_version: 3
|
183
183
|
summary: Ticketmaster Provider for Lighthouse
|