ticketmaster-basecamp 0.2.6 → 0.2.7
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/Rakefile +1 -1
- data/VERSION +1 -1
- data/ticketmaster-basecamp.gemspec +77 -69
- metadata +16 -12
data/Rakefile
CHANGED
|
@@ -10,7 +10,7 @@ begin
|
|
|
10
10
|
gem.email = "hong.quach@abigfisch.com"
|
|
11
11
|
gem.homepage = "http://github.com/kiafaldorius/ticketmaster-basecamp"
|
|
12
12
|
gem.authors = ["HybridGroup"]
|
|
13
|
-
gem.add_dependency "ticketmaster", ">= 0.
|
|
13
|
+
gem.add_dependency "ticketmaster", ">= 0.6.6"
|
|
14
14
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
|
15
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
16
16
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.7
|
|
@@ -1,69 +1,77 @@
|
|
|
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-basecamp}
|
|
8
|
-
s.version = "0.2.
|
|
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-
|
|
13
|
-
s.description = %q{This gem provides an interface to basecamp 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/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/project_count.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"
|
|
48
|
-
]
|
|
49
|
-
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-basecamp}
|
|
50
|
-
s.require_paths = ["lib"]
|
|
51
|
-
s.rubygems_version = %q{1.
|
|
52
|
-
s.summary = %q{The basecamp provider for ticketmaster}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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-basecamp}
|
|
8
|
+
s.version = "0.2.7"
|
|
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-11}
|
|
13
|
+
s.description = %q{This gem provides an interface to basecamp 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/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/project_count.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"
|
|
48
|
+
]
|
|
49
|
+
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-basecamp}
|
|
50
|
+
s.require_paths = ["lib"]
|
|
51
|
+
s.rubygems_version = %q{1.3.7}
|
|
52
|
+
s.summary = %q{The basecamp provider for ticketmaster}
|
|
53
|
+
s.test_files = [
|
|
54
|
+
"spec/comments_spec.rb",
|
|
55
|
+
"spec/projects_spec.rb",
|
|
56
|
+
"spec/spec_helper.rb",
|
|
57
|
+
"spec/ticketmaster-basecamp_spec.rb",
|
|
58
|
+
"spec/tickets_spec.rb"
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
if s.respond_to? :specification_version then
|
|
62
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
63
|
+
s.specification_version = 3
|
|
64
|
+
|
|
65
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
66
|
+
s.add_runtime_dependency(%q<ticketmaster>, [">= 0.6.6"])
|
|
67
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
68
|
+
else
|
|
69
|
+
s.add_dependency(%q<ticketmaster>, [">= 0.6.6"])
|
|
70
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
71
|
+
end
|
|
72
|
+
else
|
|
73
|
+
s.add_dependency(%q<ticketmaster>, [">= 0.6.6"])
|
|
74
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
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: 25
|
|
5
|
+
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 7
|
|
10
|
+
version: 0.2.7
|
|
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-07-11 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -26,12 +26,12 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 11
|
|
30
30
|
segments:
|
|
31
31
|
- 0
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
version: 0.
|
|
32
|
+
- 6
|
|
33
|
+
- 6
|
|
34
|
+
version: 0.6.6
|
|
35
35
|
type: :runtime
|
|
36
36
|
version_requirements: *id001
|
|
37
37
|
- !ruby/object:Gem::Dependency
|
|
@@ -118,9 +118,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
requirements: []
|
|
119
119
|
|
|
120
120
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 1.
|
|
121
|
+
rubygems_version: 1.3.7
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 3
|
|
124
124
|
summary: The basecamp provider for ticketmaster
|
|
125
|
-
test_files:
|
|
126
|
-
|
|
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
|