ticketmaster-basecamp 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
@@ -9,7 +9,7 @@ module TicketMaster::Provider
9
9
  end
10
10
 
11
11
  def authorize(auth = {})
12
- auth[:ssl] ||= false
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 the gemspec command
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.4"
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{2010-11-30}
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
- "README.md"
17
+ "README.md"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- ".gitignore",
22
- "LICENSE",
23
- "README.md",
24
- "Rakefile",
25
- "VERSION",
26
- "lib/basecamp/basecamp.rb",
27
- "lib/provider/basecamp.rb",
28
- "lib/provider/comment.rb",
29
- "lib/provider/project.rb",
30
- "lib/provider/ticket.rb",
31
- "lib/ticketmaster-basecamp.rb",
32
- "spec/comments_spec.rb",
33
- "spec/fixtures/comments.xml",
34
- "spec/fixtures/comments/74197051.xml",
35
- "spec/fixtures/comments/74197096.xml",
36
- "spec/fixtures/projects.xml",
37
- "spec/fixtures/projects/5220065.xml",
38
- "spec/fixtures/projects/create.xml",
39
- "spec/fixtures/todo_lists.xml",
40
- "spec/fixtures/todo_lists/9972756_items.xml",
41
- "spec/fixtures/todo_lists/9973518_items.xml",
42
- "spec/projects_spec.rb",
43
- "spec/spec.opts",
44
- "spec/spec_helper.rb",
45
- "spec/ticketmaster-basecamp_spec.rb",
46
- "spec/tickets_spec.rb",
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.3.7}
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: 19
5
- prerelease: false
4
+ hash: 17
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 4
10
- version: 0.1.4
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: 2010-11-30 00:00:00 -08:00
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
- - --charset=UTF-8
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.3.7
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
- - spec/comments_spec.rb
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
+
data/.gitignore DELETED
@@ -1,22 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC
22
- .rvmrc