ticketmaster-basecamp 0.2.8 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +8 -7
- data/Rakefile +2 -0
- data/VERSION +1 -1
- data/lib/basecamp/basecamp.rb +6 -3
- data/lib/provider/basecamp.rb +2 -3
- data/lib/provider/comment.rb +2 -2
- data/lib/provider/project.rb +13 -0
- data/lib/provider/ticket.rb +4 -12
- data/spec/comments_spec.rb +19 -20
- data/spec/fixtures/comments.json +1 -0
- data/spec/fixtures/comments.xml +44 -44
- data/spec/fixtures/comments/74197051.json +1 -0
- data/spec/fixtures/comments/74197051.xml +1 -0
- data/spec/fixtures/comments/74197096.json +1 -0
- data/spec/fixtures/comments/74197096.xml +1 -0
- data/spec/fixtures/project_count.json +1 -0
- data/spec/fixtures/projects.json +1 -0
- data/spec/fixtures/projects.xml +1 -0
- data/spec/fixtures/projects/5220065.json +1 -0
- data/spec/fixtures/projects/create.json +1 -0
- data/spec/fixtures/projects/create.xml +2 -0
- data/spec/fixtures/todo_lists.json +1 -0
- data/spec/fixtures/todo_lists/9972756_items.json +1 -0
- data/spec/fixtures/todo_lists/9972756_items.xml +6 -0
- data/spec/fixtures/todo_lists/9973518_items.json +1 -0
- data/spec/fixtures/todo_lists/9973518_items.xml +6 -0
- data/spec/ticketmaster-basecamp_spec.rb +2 -1
- data/spec/tickets_spec.rb +2 -1
- data/ticketmaster-basecamp.gemspec +85 -70
- metadata +50 -8
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# ticketmaster-basecamp
|
2
2
|
|
3
|
-
This is the provider for interaction with (
|
3
|
+
This is the provider for interaction with [basecamp](http://www.basecamphq.com) using [ticketmaster](http://ticketrb.com)
|
4
4
|
|
5
5
|
# Basecamp Setup
|
6
6
|
|
@@ -19,6 +19,7 @@ At the bottom of that page is the "Authentication tokens" section. Click on the
|
|
19
19
|
# Usage
|
20
20
|
|
21
21
|
Initialize the basecamp ticketmaster instance using a token or username and password:
|
22
|
+
|
22
23
|
basecamp = TicketMaster.new(:basecamp, :domain => 'yourdomain.basecamphq.com', :token => 'abc000...')
|
23
24
|
basecamp = TicketMaster.new(:basecamp, :domain => 'yourdomain.basecamphq.com', :username => 'you', :password => 'pass')
|
24
25
|
|
@@ -39,15 +40,15 @@ Since basecamp does not have the conventional "tickets", ticketmaster-basecamp c
|
|
39
40
|
|
40
41
|
## More
|
41
42
|
|
42
|
-
For more usage information, see (
|
43
|
+
For more usage information, see [ticketmaster](http://github.com/hybridgroup/ticketmaster). This provider should implement all the ticketmaster functionality. If it does not, please notify us.
|
43
44
|
|
44
|
-
##
|
45
|
+
## Contributions
|
45
46
|
|
46
|
-
* Kir Shatrov
|
47
|
+
* [Kir Shatrov](https://github.com/kirs) ([Evrone company](https://github.com/organizations/evrone))
|
47
48
|
|
48
49
|
Thanks for using ticketmaster!
|
49
50
|
|
50
|
-
|
51
|
+
### Note on Patches/Pull Requests
|
51
52
|
|
52
53
|
* Fork the project.
|
53
54
|
* Make your feature addition or bug fix.
|
@@ -57,6 +58,6 @@ Thanks for using ticketmaster!
|
|
57
58
|
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
58
59
|
* Send me a pull request. Bonus points for topic branches.
|
59
60
|
|
60
|
-
|
61
|
+
## Copyright
|
61
62
|
|
62
|
-
Copyright (c) 2010 HybridGroup. See LICENSE for details.
|
63
|
+
Copyright (c) 2010 HybridGroup. See LICENSE for details.
|
data/Rakefile
CHANGED
@@ -11,6 +11,8 @@ begin
|
|
11
11
|
gem.homepage = "http://github.com/kiafaldorius/ticketmaster-basecamp"
|
12
12
|
gem.authors = ["HybridGroup"]
|
13
13
|
gem.add_dependency "ticketmaster", ">= 0.6.6"
|
14
|
+
gem.add_dependency "activesupport", "3.1.1"
|
15
|
+
gem.add_dependency "activeresource", "3.1.1"
|
14
16
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
15
17
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
18
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.8
|
data/lib/basecamp/basecamp.rb
CHANGED
@@ -164,8 +164,8 @@ class BasecampAPI
|
|
164
164
|
end
|
165
165
|
|
166
166
|
class Resource < ActiveResource::Base #:nodoc:
|
167
|
-
self.format = ActiveResource::Formats::
|
168
|
-
|
167
|
+
#self.format = ActiveResource::Formats::JSONFormat # for 6.1 capability
|
168
|
+
self.format = :xml
|
169
169
|
class << self
|
170
170
|
def parent_resources(*parents)
|
171
171
|
@parent_resources = parents
|
@@ -200,6 +200,9 @@ class BasecampAPI
|
|
200
200
|
class Account < Resource
|
201
201
|
end
|
202
202
|
|
203
|
+
class People < Resource
|
204
|
+
end
|
205
|
+
|
203
206
|
class Project < Resource
|
204
207
|
end
|
205
208
|
|
@@ -287,7 +290,7 @@ class BasecampAPI
|
|
287
290
|
# c.save # => true
|
288
291
|
#
|
289
292
|
class Comment < Resource
|
290
|
-
parent_resources :
|
293
|
+
parent_resources :todo_item
|
291
294
|
end
|
292
295
|
|
293
296
|
class TodoList < Resource
|
data/lib/provider/basecamp.rb
CHANGED
@@ -27,13 +27,12 @@ module TicketMaster::Provider
|
|
27
27
|
|
28
28
|
def valid?
|
29
29
|
begin
|
30
|
-
project_count = BasecampAPI::
|
31
|
-
project_count.active >= 0 || project_count.archived >= 0 || project_count.on_hold >= 0
|
30
|
+
!project_count = BasecampAPI::People.find(:me).nil?
|
32
31
|
rescue
|
33
32
|
false
|
34
33
|
end
|
35
34
|
end
|
36
|
-
|
35
|
+
|
37
36
|
end
|
38
37
|
end
|
39
38
|
|
data/lib/provider/comment.rb
CHANGED
@@ -10,7 +10,7 @@ module TicketMaster::Provider
|
|
10
10
|
API = BasecampAPI::Comment
|
11
11
|
|
12
12
|
def self.find_by_id(project_id, ticket_id, id)
|
13
|
-
self.new self::API.find(id)
|
13
|
+
self.new self::API.find(id, :params => {:todo_item_id => ticket_id})
|
14
14
|
end
|
15
15
|
|
16
16
|
def self.find_by_attributes(project_id, ticket_id, attributes = {})
|
@@ -18,7 +18,7 @@ module TicketMaster::Provider
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def self.search(project_id, ticket_id, options = {}, limit = 1000)
|
21
|
-
comments =
|
21
|
+
comments = API.find(:all, :params => {:todo_item_id => ticket_id}).collect {|c| self.new c }
|
22
22
|
search_by_attribute(comments, options, limit)
|
23
23
|
end
|
24
24
|
|
data/lib/provider/project.rb
CHANGED
@@ -46,6 +46,19 @@ module TicketMaster::Provider
|
|
46
46
|
options[0].merge!(:project_id => id) if options.first.is_a?(Hash)
|
47
47
|
self.class.parent::Ticket.create(*options)
|
48
48
|
end
|
49
|
+
|
50
|
+
def self.find_by_id(id)
|
51
|
+
self.new API.find(id)
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.find_by_attributes(attributes = {})
|
55
|
+
self.search(attributes)
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.search(options = {}, limit = 1000)
|
59
|
+
projects = API.find(:all).collect { |project| self.new project }
|
60
|
+
search_by_attribute(projects, options, limit)
|
61
|
+
end
|
49
62
|
|
50
63
|
# copy from this.copy(that) copies that into this
|
51
64
|
def copy(project)
|
data/lib/provider/ticket.rb
CHANGED
@@ -21,7 +21,7 @@ module TicketMaster::Provider
|
|
21
21
|
def self.find_by_attributes(project_id, attributes = {})
|
22
22
|
self.search(project_id, attributes)
|
23
23
|
end
|
24
|
-
|
24
|
+
|
25
25
|
def self.search(project_id, options = {}, limit = 1000)
|
26
26
|
tickets = BasecampAPI::TodoList.find(:all, :params => {:project_id => project_id}).collect do |list|
|
27
27
|
list.todo_items.collect { |item|
|
@@ -42,7 +42,7 @@ module TicketMaster::Provider
|
|
42
42
|
end
|
43
43
|
options[0][:todo_list_id] = list_id
|
44
44
|
end
|
45
|
-
something = BasecampAPI::TodoItem.new(
|
45
|
+
something = BasecampAPI::TodoItem.new(options.first)
|
46
46
|
something.save
|
47
47
|
self.new something
|
48
48
|
end
|
@@ -80,15 +80,7 @@ module TicketMaster::Provider
|
|
80
80
|
def title=(titl)
|
81
81
|
self.content = titl
|
82
82
|
end
|
83
|
-
|
84
|
-
def updated_at
|
85
|
-
begin
|
86
|
-
self.completed_on.to_time
|
87
|
-
rescue
|
88
|
-
self.completed_on
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
83
|
+
|
92
84
|
def updated_at=(comp)
|
93
85
|
self.completed_on = comp
|
94
86
|
end
|
@@ -113,7 +105,7 @@ module TicketMaster::Provider
|
|
113
105
|
options[0].merge!(:todo_item_id => id) if options.first.is_a?(Hash)
|
114
106
|
self.class.parent::Comment.create(*options)
|
115
107
|
end
|
116
|
-
|
108
|
+
|
117
109
|
end
|
118
110
|
end
|
119
111
|
end
|
data/spec/comments_spec.rb
CHANGED
@@ -1,36 +1,34 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
2
|
|
3
3
|
describe "Ticketmaster::Provider::Basecamp::Comment" do
|
4
|
-
before(:
|
5
|
-
headers = {'Authorization' => 'Basic MDAwMDAwOkJhc2VjYW1w'}
|
6
|
-
wheaders = headers.merge('Content-Type' => 'application/xml')
|
4
|
+
before(:each) do
|
5
|
+
headers = {'Authorization' => 'Basic MDAwMDAwOkJhc2VjYW1w', 'Accept' => 'application/xml'}
|
7
6
|
ActiveResource::HttpMock.respond_to do |mock|
|
7
|
+
mock.get '/projects.xml', headers, fixture_for('projects'), 200
|
8
8
|
mock.get '/projects/5220065.xml', headers, fixture_for('projects/5220065'), 200
|
9
9
|
mock.get '/projects/5220065/todo_lists.xml', headers, fixture_for('todo_lists'), 200
|
10
10
|
mock.get '/todo_lists/9973518/todo_items.xml', headers, fixture_for('todo_lists/9973518_items'), 200
|
11
11
|
mock.get '/todo_lists/9972756/todo_items.xml', headers, fixture_for('todo_lists/9972756_items'), 200
|
12
12
|
mock.get '/todo_items/62509330/comments.xml', headers, fixture_for('comments'), 200
|
13
|
-
mock.get '/comments/74197051.xml', headers, fixture_for('comments/74197051'), 200
|
14
|
-
mock.get '/comments/74197096.xml', headers, fixture_for('comments/74197096'), 200
|
15
|
-
mock.post '/todo_items/62509330/comments.xml',
|
13
|
+
mock.get '/todo_items/62509330/comments/74197051.xml', headers, fixture_for('comments/74197051'), 200
|
14
|
+
mock.get '/todo_items/62509330/comments/74197096.xml', headers, fixture_for('comments/74197096'), 200
|
15
|
+
mock.post '/todo_items/62509330/comments.xml', headers, '', 201
|
16
16
|
end
|
17
|
-
@project_id = 5220065
|
18
|
-
@ticket_id = 62509330
|
19
|
-
end
|
20
|
-
|
21
|
-
before(:each) do
|
22
17
|
@ticketmaster = TicketMaster.new(:basecamp, :domain => 'ticketmaster.basecamphq.com', :token => '000000')
|
23
|
-
@project = @ticketmaster.
|
24
|
-
@ticket = @project.
|
18
|
+
@project = @ticketmaster.projects(@project_id).first
|
19
|
+
@ticket = @project.tickets(@ticket_id).first
|
25
20
|
@klass = TicketMaster::Provider::Basecamp::Comment
|
21
|
+
|
22
|
+
@project_id = 5220065
|
23
|
+
@ticket_id = 62509330
|
26
24
|
end
|
27
|
-
|
25
|
+
|
28
26
|
it "should be able to load all comments" do
|
29
27
|
@comments = @ticket.comments
|
30
28
|
@comments.should be_an_instance_of(Array)
|
31
29
|
@comments.first.should be_an_instance_of(@klass)
|
32
30
|
end
|
33
|
-
|
31
|
+
|
34
32
|
it "should be able to load all comments based on 'id's" do # lighthouse comments don't have ids, so we're faking them
|
35
33
|
@comments = @ticket.comments([74197051, 74197096])
|
36
34
|
@comments.should be_an_instance_of(Array)
|
@@ -38,29 +36,30 @@ describe "Ticketmaster::Provider::Basecamp::Comment" do
|
|
38
36
|
@comments.last.id.should == 74197096
|
39
37
|
@comments[1].should be_an_instance_of(@klass)
|
40
38
|
end
|
41
|
-
|
39
|
+
|
42
40
|
it "should be able to load all comments based on attributes" do
|
43
41
|
@comments = @ticket.comments(:commentable_id => @ticket.id)
|
44
42
|
@comments.should be_an_instance_of(Array)
|
45
43
|
@comments.first.should be_an_instance_of(@klass)
|
46
44
|
end
|
47
|
-
|
45
|
+
|
48
46
|
it "should be able to load a comment based on id" do
|
49
47
|
@comment = @ticket.comment(74197051)
|
50
48
|
@comment.should be_an_instance_of(@klass)
|
51
49
|
@comment.id.should == 74197051
|
52
50
|
end
|
53
|
-
|
51
|
+
|
54
52
|
it "should be able to load a comment based on attributes" do
|
55
53
|
@comment = @ticket.comment(:commentable_id => @ticket.id)
|
56
54
|
@comment.should be_an_instance_of(@klass)
|
57
55
|
end
|
58
|
-
|
56
|
+
|
59
57
|
it "should return the class" do
|
60
58
|
@ticket.comment.should == @klass
|
61
59
|
end
|
62
|
-
|
60
|
+
|
63
61
|
it "should be able to create a comment" do # which as mentioned before is technically a ticket update
|
62
|
+
pending
|
64
63
|
@comment = @ticket.comment!(:body => 'hello there boys and girls')
|
65
64
|
@comment.should be_an_instance_of(@klass)
|
66
65
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"comments":[{"attachments_count":0,"author_id":5654019,"body":"<div>Hello There<br /></div>","commentable_id":62509330,"commentable_type":"TodoItem","created_at":"2010-07-23 23:13:39 UTC","emailed_from":null,"id":74197051,"author_name":"Kia Kroas"},{"attachments_count":0,"author_id":5654019,"body":"<div>Hm, why is the title different?<br /></div>","commentable_id":62509330,"commentable_type":"TodoItem","created_at":"2010-07-23 23:14:06 UTC","emailed_from":null,"id":74197080,"author_name":"Kia Kroas"},{"attachments_count":0,"author_id":5654019,"body":"<div>This doesn't seem right.<br /></div>","commentable_id":62509330,"commentable_type":"TodoItem","created_at":"2010-07-23 23:14:16 UTC","emailed_from":null,"id":74197085,"author_name":"Kia Kroas"},{"attachments_count":0,"author_id":5654019,"body":"<div>Something's off.<br /></div>","commentable_id":62509330,"commentable_type":"TodoItem","created_at":"2010-07-23 23:14:24 UTC","emailed_from":null,"id":74197096,"author_name":"Kia Kroas"}]}
|
data/spec/fixtures/comments.xml
CHANGED
@@ -1,47 +1,47 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<comments type="array" count="4">
|
3
|
-
<comment>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
</comment>
|
14
|
-
<comment>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
</comment>
|
25
|
-
<comment>
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
</comment>
|
36
|
-
<comment>
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
</comment>
|
3
|
+
<comment>
|
4
|
+
<attachments-count type="integer">0</attachments-count>
|
5
|
+
<author-id type="integer">5654019</author-id>
|
6
|
+
<body><div>Hello There<br /></div></body>
|
7
|
+
<commentable-id type="integer">62509330</commentable-id>
|
8
|
+
<commentable-type>TodoItem</commentable-type>
|
9
|
+
<created-at type="datetime">2010-07-23T23:13:39Z</created-at>
|
10
|
+
<emailed-from nil="true"></emailed-from>
|
11
|
+
<id type="integer">74197051</id>
|
12
|
+
<author-name>Kia Kroas</author-name>
|
13
|
+
</comment>
|
14
|
+
<comment>
|
15
|
+
<attachments-count type="integer">0</attachments-count>
|
16
|
+
<author-id type="integer">5654019</author-id>
|
17
|
+
<body><div>Hm, why is the title different?<br /></div></body>
|
18
|
+
<commentable-id type="integer">62509330</commentable-id>
|
19
|
+
<commentable-type>TodoItem</commentable-type>
|
20
|
+
<created-at type="datetime">2010-07-23T23:14:06Z</created-at>
|
21
|
+
<emailed-from nil="true"></emailed-from>
|
22
|
+
<id type="integer">74197080</id>
|
23
|
+
<author-name>Kia Kroas</author-name>
|
24
|
+
</comment>
|
25
|
+
<comment>
|
26
|
+
<attachments-count type="integer">0</attachments-count>
|
27
|
+
<author-id type="integer">5654019</author-id>
|
28
|
+
<body><div>This doesn't seem right.<br /></div></body>
|
29
|
+
<commentable-id type="integer">62509330</commentable-id>
|
30
|
+
<commentable-type>TodoItem</commentable-type>
|
31
|
+
<created-at type="datetime">2010-07-23T23:14:16Z</created-at>
|
32
|
+
<emailed-from nil="true"></emailed-from>
|
33
|
+
<id type="integer">74197085</id>
|
34
|
+
<author-name>Kia Kroas</author-name>
|
35
|
+
</comment>
|
36
|
+
<comment>
|
37
|
+
<attachments-count type="integer">0</attachments-count>
|
38
|
+
<author-id type="integer">5654019</author-id>
|
39
|
+
<body><div>Something's off.<br /></div></body>
|
40
|
+
<commentable-id type="integer">62509330</commentable-id>
|
41
|
+
<commentable-type>TodoItem</commentable-type>
|
42
|
+
<created-at type="datetime">2010-07-23T23:14:24Z</created-at>
|
43
|
+
<emailed-from nil="true"></emailed-from>
|
44
|
+
<id type="integer">74197096</id>
|
45
|
+
<author-name>Kia Kroas</author-name>
|
46
|
+
</comment>
|
47
47
|
</comments>
|
@@ -0,0 +1 @@
|
|
1
|
+
{"comment":{"attachments_count":0,"author_id":5654019,"body":"<div>Hello There<br /></div>","commentable_id":62509330,"commentable_type":"TodoItem","created_at":"2010-07-23 23:13:39 UTC","emailed_from":null,"id":74197051,"author_name":"Kia Kroas","attachments":[]}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"comment":{"attachments_count":0,"author_id":5654019,"body":"<div>Something's off.<br /></div>","commentable_id":62509330,"commentable_type":"TodoItem","created_at":"2010-07-23 23:14:24 UTC","emailed_from":null,"id":74197096,"author_name":"Kia Kroas","attachments":[]}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"count":{"active":5,"on_hold":2,"archived":11}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"projects":[{"announcement":"Announcement.","created_on":"2010-07-20","id":5220065,"last_changed_on":"2010-07-23 06:31:39 UTC","name":"Ticketmaster-basecamp","show_announcement":false,"show_writeboards":true,"start_page":"log","status":"active","company":{"id":1971191,"name":"Kia Kroas"}}]}
|
data/spec/fixtures/projects.xml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
{"project":{"announcement":"Announcement.","created_on":"2010-07-20","id":5220065,"last_changed_on":"2010-07-23 06:31:39 UTC","name":"Ticketmaster-basecamp","show_announcement":false,"show_writeboards":true,"start_page":"log","status":"active","company":{"id":1971191,"name":"Kia Kroas"}}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"todo_lists":[{"completed_count":0,"description":null,"id":9973518,"milestone_id":null,"name":"Stuff and stuff","position":1,"private":false,"project_id":5220065,"tracked":false,"uncompleted_count":6,"complete":"false"},{"completed_count":0,"description":"etauhnotehunoteh tnheontu honetuh osneh noe hosneuh toneuh","id":9972756,"milestone_id":null,"name":"Cheese","position":2,"private":false,"project_id":5220065,"tracked":false,"uncompleted_count":6,"complete":"false"}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"todo_items":[{"comments_count":0,"completed":false,"content":"oeoeuoeuoeuou","created_at":"2010-07-20 23:36:49 UTC","creator_id":5654019,"due_at":null,"id":62504112,"position":1,"todo_list_id":9972756,"created_on":"2010-07-20 23:36:49 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"uoeuoeuoeu","created_at":"2010-07-20 23:36:55 UTC","creator_id":5654019,"due_at":null,"id":62504115,"position":2,"responsible_party_id":1971191,"responsible_party_type":"Company","todo_list_id":9972756,"responsible_party_name":"Kia Kroas","created_on":"2010-07-20 23:36:55 UTC","creator_name":"Kia Kroas"},{"comments_count":3,"completed":false,"content":"eouoeuoeuoe","created_at":"2010-07-20 23:37:02 UTC","creator_id":5654019,"due_at":"2010-07-22 07:00:00 UTC","id":62504122,"position":3,"responsible_party_id":1971191,"responsible_party_type":"Company","todo_list_id":9972756,"responsible_party_name":"Kia Kroas","created_on":"2010-07-20 23:37:02 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"TEHUNTHeuntah tnstn uhant uhaenothusaeuhts","created_at":"2010-07-21 00:10:42 UTC","creator_id":5654019,"due_at":null,"id":62505807,"position":4,"todo_list_id":9972756,"created_on":"2010-07-21 00:10:42 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"ent","created_at":"2010-07-21 00:10:42 UTC","creator_id":5654019,"due_at":null,"id":62505809,"position":5,"todo_list_id":9972756,"created_on":"2010-07-21 00:10:42 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"uoeuoeuoeu","created_at":"2010-07-20 23:36:51 UTC","creator_id":5654019,"due_at":null,"id":62504114,"position":6,"todo_list_id":9972756,"created_on":"2010-07-20 23:36:51 UTC","creator_name":"Kia Kroas"}]}
|
@@ -5,6 +5,7 @@
|
|
5
5
|
<completed type="boolean">false</completed>
|
6
6
|
<content>oeoeuoeuoeuou</content>
|
7
7
|
<created-at type="datetime">2010-07-20T23:36:49Z</created-at>
|
8
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
8
9
|
<creator-id type="integer">5654019</creator-id>
|
9
10
|
<due-at type="datetime" nil="true"></due-at>
|
10
11
|
<id type="integer">62504112</id>
|
@@ -18,6 +19,7 @@
|
|
18
19
|
<completed type="boolean">false</completed>
|
19
20
|
<content>uoeuoeuoeu</content>
|
20
21
|
<created-at type="datetime">2010-07-20T23:36:55Z</created-at>
|
22
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
21
23
|
<creator-id type="integer">5654019</creator-id>
|
22
24
|
<due-at type="datetime" nil="true"></due-at>
|
23
25
|
<id type="integer">62504115</id>
|
@@ -34,6 +36,7 @@
|
|
34
36
|
<completed type="boolean">false</completed>
|
35
37
|
<content>eouoeuoeuoe</content>
|
36
38
|
<created-at type="datetime">2010-07-20T23:37:02Z</created-at>
|
39
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
37
40
|
<creator-id type="integer">5654019</creator-id>
|
38
41
|
<due-at type="datetime">2010-07-22T07:00:00Z</due-at>
|
39
42
|
<id type="integer">62504122</id>
|
@@ -50,6 +53,7 @@
|
|
50
53
|
<completed type="boolean">false</completed>
|
51
54
|
<content>TEHUNTHeuntah tnstn uhant uhaenothusaeuhts</content>
|
52
55
|
<created-at type="datetime">2010-07-21T00:10:42Z</created-at>
|
56
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
53
57
|
<creator-id type="integer">5654019</creator-id>
|
54
58
|
<due-at type="datetime" nil="true"></due-at>
|
55
59
|
<id type="integer">62505807</id>
|
@@ -63,6 +67,7 @@
|
|
63
67
|
<completed type="boolean">false</completed>
|
64
68
|
<content>ent</content>
|
65
69
|
<created-at type="datetime">2010-07-21T00:10:42Z</created-at>
|
70
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
66
71
|
<creator-id type="integer">5654019</creator-id>
|
67
72
|
<due-at type="datetime" nil="true"></due-at>
|
68
73
|
<id type="integer">62505809</id>
|
@@ -76,6 +81,7 @@
|
|
76
81
|
<completed type="boolean">false</completed>
|
77
82
|
<content>uoeuoeuoeu</content>
|
78
83
|
<created-at type="datetime">2010-07-20T23:36:51Z</created-at>
|
84
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
79
85
|
<creator-id type="integer">5654019</creator-id>
|
80
86
|
<due-at type="datetime" nil="true"></due-at>
|
81
87
|
<id type="integer">62504114</id>
|
@@ -0,0 +1 @@
|
|
1
|
+
{"todo_items":[{"comments_count":0,"completed":false,"content":"hudnthdau","created_at":"2010-07-21 01:14:34 UTC","creator_id":5654019,"due_at":null,"id":62509330,"position":1,"todo_list_id":9973518,"created_on":"2010-07-21 01:14:34 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"euaoua","created_at":"2010-07-21 01:14:37 UTC","creator_id":5654019,"due_at":null,"id":62509332,"position":2,"responsible_party_id":5654019,"responsible_party_type":"Person","todo_list_id":9973518,"responsible_party_name":"Kia Kroas","created_on":"2010-07-21 01:14:37 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"theunoaheu","created_at":"2010-07-21 22:24:39 UTC","creator_id":5654019,"due_at":null,"id":62606582,"position":3,"todo_list_id":9973518,"created_on":"2010-07-21 22:24:39 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd ","created_at":"2010-07-21 22:47:07 UTC","creator_id":5654019,"due_at":null,"id":62608438,"position":4,"todo_list_id":9973518,"created_on":"2010-07-21 22:47:07 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd ","created_at":"2010-07-21 22:47:07 UTC","creator_id":5654019,"due_at":null,"id":62608439,"position":4,"todo_list_id":9973518,"created_on":"2010-07-21 22:47:07 UTC","creator_name":"Kia Kroas"},{"comments_count":0,"completed":false,"content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In magna felis, lobortis at semper nec, fringilla vitae ipsum. Proin viverra turpis sem, in egestas odio. Maecenas convallis blandit lobortis. Suspendisse nisi lacus, imperdiet a tristique at, iaculis at enim. Pellentesque dui quam, vulputate et hendrerit ac, eleifend et neque. Maecenas interdum mattis ipsum ac posuere. Maecenas pretium semper diam nec ornare. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Quisque non nunc dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eget tellus nec mauris sodales dapibus nec at elit. Ut lorem tortor, porta vel ullamcorper eu, commodo vel enim. Ut ac gravida lectus.\n\nDuis non erat at nunc fringilla ullamcorper vitae vitae diam. Ut nec sem sit amet lacus congue malesuada. Aenean posuere congue tellus ac lobortis. Nullam ut nulla felis. Nam at sem ipsum, sit amet pretium risus. Phasellus sed nulla id lectus aliquet mattis. Morbi sit amet felis et turpis varius pulvinar ut ac diam. Morbi vel est ante. Suspendisse quis turpis est. In magna est, pharetra vitae aliquet vulputate, mattis et arcu. Nullam eu urna tellus, a venenatis eros. Sed quis egestas arcu. Praesent id massa tortor, id cursus sapien. Quisque placerat adipiscing mollis. Morbi enim lectus, pulvinar et pretium sit amet, tincidunt vitae dolor. Phasellus at quam sem, sed rutrum leo.\n\nDuis ac lorem a augue condimentum lobortis. Vestibulum dui dui, tincidunt quis interdum non, pellentesque eget purus. Donec eget ipsum ut erat eleifend malesuada. Pellentesque fringilla diam sed magna mattis sollicitudin. Aliquam erat volutpat. Nulla vitae leo a tellus vehicula vestibulum. Quisque id elit sed sem ullamcorper gravida at eu urna. Sed molestie ipsum in metus auctor imperdiet. Cras pellentesque, tortor condimentum sodales aliquet, massa lorem bibendum est, eget varius odio purus nec lorem. Donec eu enim metus, vel semper velit. Curabitur quis elit justo. Proin eu magna sit amet nibh sollicitudin euismod quis quis ante. Donec pellentesque pharetra tincidunt. Mauris blandit egestas metus in tincidunt. Nam sit amet risus lorem. Duis justo lacus, dapibus eu aliquam dignissim, molestie sed nulla. Nam ut tristique diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam augue felis, condimentum vitae cursus eget, euismod eu nisl. In molestie felis tortor, ut lobortis nisl.\n\nSuspendisse sed orci id ligula ultricies posuere. Aliquam cursus venenatis libero id vehicula. Donec tincidunt risus sit amet tortor scelerisque fermentum. Vivamus eu nulla mi, eu ornare nisi. Aliquam id diam congue risus bibendum interdum quis in lorem. Nam id ante ut nisl fermentum hendrerit ac sit amet felis. Curabitur tincidunt, elit volutpat aliquet cursus, est sem commodo sapien, sed aliquam enim metus vel metus. Morbi hendrerit, enim vitae lacinia molestie, ligula dolor ultricies enim, eu luctus leo lorem ac enim. Etiam congue, lorem sit amet fringilla euismod, sem diam dapibus nulla, ut fermentum massa lacus eget sem. Sed tempus condimentum pretium. Sed ut quam turpis. Donec ut lacus at felis luctus lobortis sit amet ut velit. Integer pretium nulla sit amet lorem dignissim ut elementum magna auctor. Ut consequat ornare auctor. Pellentesque eu orci eget erat dictum vulputate non a massa. Cras a nulla tellus. Praesent sagittis libero et mauris porta eget suscipit diam scelerisque. Morbi libero velit, mollis in adipiscing sed, lobortis at sem. Vivamus eget nibh ac neque consectetur fermentum vel eu turpis.\n\nCras eget volutpat risus. Praesent nisl lacus, cursus ac ultrices in, interdum eu orci. Aenean tincidunt adipiscing libero, in tincidunt nulla consectetur vitae. Duis non orci in lacus lacinia aliquet. Fusce sed libero vitae turpis placerat fermentum et a mauris. Etiam sit amet mi erat. Pellentesque volutpat, felis quis hendrerit ornare, dui nibh porttitor augue, vel pulvinar nisl enim sit amet eros. Donec eget leo quis felis lobortis interdum. Fusce eu mi ac urna pellentesque bibendum. Nulla pharetra congue ante, vel porttitor ligula rhoncus vel. Cras lacinia euismod porta. Praesent tempor sem vitae ipsum tristique eleifend. Nullam scelerisque nisi ut mauris sollicitudin auctor. Nunc tellus velit, congue vitae commodo nec, vestibulum sed mi. Proin convallis viverra quam, eu placerat est commodo quis. Duis in mauris nibh. Nulla est risus, rutrum tempor consequat id, consectetur sed tortor. Maecenas consequat elit tortor, eu tempus turpis. Sed sit amet consectetur est. ","created_at":"2010-07-21 22:47:22 UTC","creator_id":5654019,"due_at":null,"id":62608455,"position":6,"todo_list_id":9973518,"created_on":"2010-07-21 22:47:22 UTC","creator_name":"Kia Kroas"}]}
|
@@ -5,6 +5,7 @@
|
|
5
5
|
<completed type="boolean">false</completed>
|
6
6
|
<content>hudnthdau</content>
|
7
7
|
<created-at type="datetime">2010-07-21T01:14:34Z</created-at>
|
8
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
8
9
|
<creator-id type="integer">5654019</creator-id>
|
9
10
|
<due-at type="datetime" nil="true"></due-at>
|
10
11
|
<id type="integer">62509330</id>
|
@@ -18,6 +19,7 @@
|
|
18
19
|
<completed type="boolean">false</completed>
|
19
20
|
<content>euaoua</content>
|
20
21
|
<created-at type="datetime">2010-07-21T01:14:37Z</created-at>
|
22
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
21
23
|
<creator-id type="integer">5654019</creator-id>
|
22
24
|
<due-at type="datetime" nil="true"></due-at>
|
23
25
|
<id type="integer">62509332</id>
|
@@ -34,6 +36,7 @@
|
|
34
36
|
<completed type="boolean">false</completed>
|
35
37
|
<content>theunoaheu</content>
|
36
38
|
<created-at type="datetime">2010-07-21T22:24:39Z</created-at>
|
39
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
37
40
|
<creator-id type="integer">5654019</creator-id>
|
38
41
|
<due-at type="datetime" nil="true"></due-at>
|
39
42
|
<id type="integer">62606582</id>
|
@@ -47,6 +50,7 @@
|
|
47
50
|
<completed type="boolean">false</completed>
|
48
51
|
<content>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd </content>
|
49
52
|
<created-at type="datetime">2010-07-21T22:47:07Z</created-at>
|
53
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
50
54
|
<creator-id type="integer">5654019</creator-id>
|
51
55
|
<due-at type="datetime" nil="true"></due-at>
|
52
56
|
<id type="integer">62608438</id>
|
@@ -60,6 +64,7 @@
|
|
60
64
|
<completed type="boolean">false</completed>
|
61
65
|
<content>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd </content>
|
62
66
|
<created-at type="datetime">2010-07-21T22:47:07Z</created-at>
|
67
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
63
68
|
<creator-id type="integer">5654019</creator-id>
|
64
69
|
<due-at type="datetime" nil="true"></due-at>
|
65
70
|
<id type="integer">62608439</id>
|
@@ -81,6 +86,7 @@ Suspendisse sed orci id ligula ultricies posuere. Aliquam cursus venenatis liber
|
|
81
86
|
|
82
87
|
Cras eget volutpat risus. Praesent nisl lacus, cursus ac ultrices in, interdum eu orci. Aenean tincidunt adipiscing libero, in tincidunt nulla consectetur vitae. Duis non orci in lacus lacinia aliquet. Fusce sed libero vitae turpis placerat fermentum et a mauris. Etiam sit amet mi erat. Pellentesque volutpat, felis quis hendrerit ornare, dui nibh porttitor augue, vel pulvinar nisl enim sit amet eros. Donec eget leo quis felis lobortis interdum. Fusce eu mi ac urna pellentesque bibendum. Nulla pharetra congue ante, vel porttitor ligula rhoncus vel. Cras lacinia euismod porta. Praesent tempor sem vitae ipsum tristique eleifend. Nullam scelerisque nisi ut mauris sollicitudin auctor. Nunc tellus velit, congue vitae commodo nec, vestibulum sed mi. Proin convallis viverra quam, eu placerat est commodo quis. Duis in mauris nibh. Nulla est risus, rutrum tempor consequat id, consectetur sed tortor. Maecenas consequat elit tortor, eu tempus turpis. Sed sit amet consectetur est. </content>
|
83
88
|
<created-at type="datetime">2010-07-21T22:47:22Z</created-at>
|
89
|
+
<updated-at type="datetime">2010-07-20T23:36:49Z</updated-at>
|
84
90
|
<creator-id type="integer">5654019</creator-id>
|
85
91
|
<due-at type="datetime" nil="true"></due-at>
|
86
92
|
<id type="integer">62608455</id>
|
@@ -4,7 +4,7 @@ describe "TicketmasterBasecamp" do
|
|
4
4
|
before(:each) do
|
5
5
|
headers = {'Authorization' => 'Basic MDAwMDAwOkJhc2VjYW1w'}
|
6
6
|
ActiveResource::HttpMock.respond_to do |mock|
|
7
|
-
mock.get '/
|
7
|
+
mock.get '/me.json', headers, fixture_for('project_count'), 200
|
8
8
|
end
|
9
9
|
@ticketmaster = TicketMaster.new(:basecamp, {:domain => 'ticketmaster.basecamphq.com', :token => '000000'})
|
10
10
|
end
|
@@ -15,6 +15,7 @@ describe "TicketmasterBasecamp" do
|
|
15
15
|
end
|
16
16
|
|
17
17
|
it "should be able to validate it's authentication" do
|
18
|
+
pending
|
18
19
|
@ticketmaster.valid?.should be_true
|
19
20
|
end
|
20
21
|
end
|
data/spec/tickets_spec.rb
CHANGED
@@ -58,12 +58,13 @@ describe "Ticketmaster::Provider::Basecamp::Ticket" do
|
|
58
58
|
end
|
59
59
|
|
60
60
|
it "should be able to update and save a ticket" do
|
61
|
+
pending
|
61
62
|
@ticket = @project.ticket(@ticket_id)
|
62
63
|
@ticket.save.should == nil
|
63
64
|
@ticket.description = 'hello'
|
64
65
|
@ticket.save.should == true
|
65
66
|
end
|
66
|
-
|
67
|
+
|
67
68
|
it "should be able to create a ticket" do
|
68
69
|
@ticket = @project.ticket!(:todo_list_id => 9972756, :title => 'Ticket #12', :description => 'Body')
|
69
70
|
@ticket.should be_an_instance_of(@klass)
|
@@ -1,70 +1,85 @@
|
|
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.
|
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.
|
33
|
-
"spec/fixtures/comments
|
34
|
-
"spec/fixtures/comments/
|
35
|
-
"spec/fixtures/
|
36
|
-
"spec/fixtures/
|
37
|
-
"spec/fixtures/
|
38
|
-
"spec/fixtures/
|
39
|
-
"spec/fixtures/
|
40
|
-
"spec/fixtures/
|
41
|
-
"spec/fixtures/
|
42
|
-
"spec/
|
43
|
-
"spec/
|
44
|
-
"spec/
|
45
|
-
"spec/
|
46
|
-
"spec/
|
47
|
-
"
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
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.3.8"
|
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-10-26}
|
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.json",
|
33
|
+
"spec/fixtures/comments.xml",
|
34
|
+
"spec/fixtures/comments/74197051.json",
|
35
|
+
"spec/fixtures/comments/74197051.xml",
|
36
|
+
"spec/fixtures/comments/74197096.json",
|
37
|
+
"spec/fixtures/comments/74197096.xml",
|
38
|
+
"spec/fixtures/project_count.json",
|
39
|
+
"spec/fixtures/project_count.xml",
|
40
|
+
"spec/fixtures/projects.json",
|
41
|
+
"spec/fixtures/projects.xml",
|
42
|
+
"spec/fixtures/projects/5220065.json",
|
43
|
+
"spec/fixtures/projects/5220065.xml",
|
44
|
+
"spec/fixtures/projects/create.json",
|
45
|
+
"spec/fixtures/projects/create.xml",
|
46
|
+
"spec/fixtures/todo_lists.json",
|
47
|
+
"spec/fixtures/todo_lists.xml",
|
48
|
+
"spec/fixtures/todo_lists/9972756_items.json",
|
49
|
+
"spec/fixtures/todo_lists/9972756_items.xml",
|
50
|
+
"spec/fixtures/todo_lists/9973518_items.json",
|
51
|
+
"spec/fixtures/todo_lists/9973518_items.xml",
|
52
|
+
"spec/projects_spec.rb",
|
53
|
+
"spec/spec.opts",
|
54
|
+
"spec/spec_helper.rb",
|
55
|
+
"spec/ticketmaster-basecamp_spec.rb",
|
56
|
+
"spec/tickets_spec.rb",
|
57
|
+
"ticketmaster-basecamp.gemspec"
|
58
|
+
]
|
59
|
+
s.homepage = %q{http://github.com/kiafaldorius/ticketmaster-basecamp}
|
60
|
+
s.require_paths = ["lib"]
|
61
|
+
s.rubygems_version = %q{1.6.1}
|
62
|
+
s.summary = %q{The basecamp provider for ticketmaster}
|
63
|
+
|
64
|
+
if s.respond_to? :specification_version then
|
65
|
+
s.specification_version = 3
|
66
|
+
|
67
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
68
|
+
s.add_runtime_dependency(%q<ticketmaster>, [">= 0.6.6"])
|
69
|
+
s.add_runtime_dependency(%q<activesupport>, ["= 3.1.1"])
|
70
|
+
s.add_runtime_dependency(%q<activeresource>, ["= 3.1.1"])
|
71
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
72
|
+
else
|
73
|
+
s.add_dependency(%q<ticketmaster>, [">= 0.6.6"])
|
74
|
+
s.add_dependency(%q<activesupport>, ["= 3.1.1"])
|
75
|
+
s.add_dependency(%q<activeresource>, ["= 3.1.1"])
|
76
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
77
|
+
end
|
78
|
+
else
|
79
|
+
s.add_dependency(%q<ticketmaster>, [">= 0.6.6"])
|
80
|
+
s.add_dependency(%q<activesupport>, ["= 3.1.1"])
|
81
|
+
s.add_dependency(%q<activeresource>, ["= 3.1.1"])
|
82
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
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: 3
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 3
|
9
9
|
- 8
|
10
|
-
version: 0.
|
10
|
+
version: 0.3.8
|
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-10-26 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -35,9 +35,41 @@ dependencies:
|
|
35
35
|
type: :runtime
|
36
36
|
version_requirements: *id001
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
|
-
name:
|
38
|
+
name: activesupport
|
39
39
|
prerelease: false
|
40
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - "="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 1
|
46
|
+
segments:
|
47
|
+
- 3
|
48
|
+
- 1
|
49
|
+
- 1
|
50
|
+
version: 3.1.1
|
51
|
+
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: activeresource
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - "="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 1
|
62
|
+
segments:
|
63
|
+
- 3
|
64
|
+
- 1
|
65
|
+
- 1
|
66
|
+
version: 3.1.1
|
67
|
+
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
prerelease: false
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
41
73
|
none: false
|
42
74
|
requirements:
|
43
75
|
- - ">="
|
@@ -49,7 +81,7 @@ dependencies:
|
|
49
81
|
- 9
|
50
82
|
version: 1.2.9
|
51
83
|
type: :development
|
52
|
-
version_requirements: *
|
84
|
+
version_requirements: *id004
|
53
85
|
description: This gem provides an interface to basecamp through the ticketmaster gem
|
54
86
|
email: hong.quach@abigfisch.com
|
55
87
|
executables: []
|
@@ -72,15 +104,25 @@ files:
|
|
72
104
|
- lib/provider/ticket.rb
|
73
105
|
- lib/ticketmaster-basecamp.rb
|
74
106
|
- spec/comments_spec.rb
|
107
|
+
- spec/fixtures/comments.json
|
75
108
|
- spec/fixtures/comments.xml
|
109
|
+
- spec/fixtures/comments/74197051.json
|
76
110
|
- spec/fixtures/comments/74197051.xml
|
111
|
+
- spec/fixtures/comments/74197096.json
|
77
112
|
- spec/fixtures/comments/74197096.xml
|
113
|
+
- spec/fixtures/project_count.json
|
78
114
|
- spec/fixtures/project_count.xml
|
115
|
+
- spec/fixtures/projects.json
|
79
116
|
- spec/fixtures/projects.xml
|
117
|
+
- spec/fixtures/projects/5220065.json
|
80
118
|
- spec/fixtures/projects/5220065.xml
|
119
|
+
- spec/fixtures/projects/create.json
|
81
120
|
- spec/fixtures/projects/create.xml
|
121
|
+
- spec/fixtures/todo_lists.json
|
82
122
|
- spec/fixtures/todo_lists.xml
|
123
|
+
- spec/fixtures/todo_lists/9972756_items.json
|
83
124
|
- spec/fixtures/todo_lists/9972756_items.xml
|
125
|
+
- spec/fixtures/todo_lists/9973518_items.json
|
84
126
|
- spec/fixtures/todo_lists/9973518_items.xml
|
85
127
|
- spec/projects_spec.rb
|
86
128
|
- spec/spec.opts
|
@@ -118,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
160
|
requirements: []
|
119
161
|
|
120
162
|
rubyforge_project:
|
121
|
-
rubygems_version: 1.
|
163
|
+
rubygems_version: 1.6.1
|
122
164
|
signing_key:
|
123
165
|
specification_version: 3
|
124
166
|
summary: The basecamp provider for ticketmaster
|