ticketmaster-basecamp 0.1.4 → 0.1.5
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/basecamp.rb +1 -1
- data/ticketmaster-basecamp.gemspec +31 -41
- metadata +10 -15
- data/.gitignore +0 -22
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.5
|
data/lib/provider/basecamp.rb
CHANGED
|
@@ -9,7 +9,7 @@ module TicketMaster::Provider
|
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def authorize(auth = {})
|
|
12
|
-
auth[:ssl]
|
|
12
|
+
auth[:ssl] = true
|
|
13
13
|
@authentication ||= TicketMaster::Authenticator.new(auth)
|
|
14
14
|
auth = @authentication
|
|
15
15
|
if (auth.domain.nil? and auth.subdomain.nil?) or (auth.token.nil? and (auth.username.nil? and auth.password.nil?))
|
|
@@ -1,66 +1,56 @@
|
|
|
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 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ticketmaster-basecamp}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.5"
|
|
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{
|
|
12
|
+
s.date = %q{2011-05-03}
|
|
13
13
|
s.description = %q{This gem provides an interface to basecamp 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
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"ticketmaster-basecamp.gemspec"
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.md",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/basecamp/basecamp.rb",
|
|
26
|
+
"lib/provider/basecamp.rb",
|
|
27
|
+
"lib/provider/comment.rb",
|
|
28
|
+
"lib/provider/project.rb",
|
|
29
|
+
"lib/provider/ticket.rb",
|
|
30
|
+
"lib/ticketmaster-basecamp.rb",
|
|
31
|
+
"spec/comments_spec.rb",
|
|
32
|
+
"spec/fixtures/comments.xml",
|
|
33
|
+
"spec/fixtures/comments/74197051.xml",
|
|
34
|
+
"spec/fixtures/comments/74197096.xml",
|
|
35
|
+
"spec/fixtures/projects.xml",
|
|
36
|
+
"spec/fixtures/projects/5220065.xml",
|
|
37
|
+
"spec/fixtures/projects/create.xml",
|
|
38
|
+
"spec/fixtures/todo_lists.xml",
|
|
39
|
+
"spec/fixtures/todo_lists/9972756_items.xml",
|
|
40
|
+
"spec/fixtures/todo_lists/9973518_items.xml",
|
|
41
|
+
"spec/projects_spec.rb",
|
|
42
|
+
"spec/spec.opts",
|
|
43
|
+
"spec/spec_helper.rb",
|
|
44
|
+
"spec/ticketmaster-basecamp_spec.rb",
|
|
45
|
+
"spec/tickets_spec.rb",
|
|
46
|
+
"ticketmaster-basecamp.gemspec"
|
|
48
47
|
]
|
|
49
48
|
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-basecamp}
|
|
50
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
51
49
|
s.require_paths = ["lib"]
|
|
52
|
-
s.rubygems_version = %q{1.
|
|
50
|
+
s.rubygems_version = %q{1.6.1}
|
|
53
51
|
s.summary = %q{The basecamp provider for ticketmaster}
|
|
54
|
-
s.test_files = [
|
|
55
|
-
"spec/comments_spec.rb",
|
|
56
|
-
"spec/projects_spec.rb",
|
|
57
|
-
"spec/spec_helper.rb",
|
|
58
|
-
"spec/ticketmaster-basecamp_spec.rb",
|
|
59
|
-
"spec/tickets_spec.rb"
|
|
60
|
-
]
|
|
61
52
|
|
|
62
53
|
if s.respond_to? :specification_version then
|
|
63
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
64
54
|
s.specification_version = 3
|
|
65
55
|
|
|
66
56
|
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-basecamp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 17
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.1.5
|
|
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:
|
|
18
|
+
date: 2011-05-03 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -61,7 +61,6 @@ extra_rdoc_files:
|
|
|
61
61
|
- README.md
|
|
62
62
|
files:
|
|
63
63
|
- .document
|
|
64
|
-
- .gitignore
|
|
65
64
|
- LICENSE
|
|
66
65
|
- README.md
|
|
67
66
|
- Rakefile
|
|
@@ -93,8 +92,8 @@ homepage: http://github.com/kiafaldorius/ticketmaster-basecamp
|
|
|
93
92
|
licenses: []
|
|
94
93
|
|
|
95
94
|
post_install_message:
|
|
96
|
-
rdoc_options:
|
|
97
|
-
|
|
95
|
+
rdoc_options: []
|
|
96
|
+
|
|
98
97
|
require_paths:
|
|
99
98
|
- lib
|
|
100
99
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -118,13 +117,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
117
|
requirements: []
|
|
119
118
|
|
|
120
119
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 1.
|
|
120
|
+
rubygems_version: 1.6.1
|
|
122
121
|
signing_key:
|
|
123
122
|
specification_version: 3
|
|
124
123
|
summary: The basecamp provider for ticketmaster
|
|
125
|
-
test_files:
|
|
126
|
-
|
|
127
|
-
- spec/projects_spec.rb
|
|
128
|
-
- spec/spec_helper.rb
|
|
129
|
-
- spec/ticketmaster-basecamp_spec.rb
|
|
130
|
-
- spec/tickets_spec.rb
|
|
124
|
+
test_files: []
|
|
125
|
+
|