Tagged Questions
1
vote
1answer
71 views
Having trouble retrieving Bascamp TimeEntries using the ruby basecamp-wrapper
I am attempting to retrieve TimeEntries in Basecamp using the Ruby basecamp-wrapper. I have tried all the combinations and different ways I could think of to get it working (see below) but am having ...
1
vote
1answer
168 views
Return only Active Projects using Basecamp's API?
Is there a way to return only active projects using Basecamp's API? No matter what I try I always get back my entire list of projects, and it's HUGE.
Here's what I think should work:
...
0
votes
1answer
24 views
Trying to access Basecamp API via Rails
I'm trying to access the Basecamp API through Rails, but it responds with a SocketError. My code is like this:
require 'rubygems'
require 'net/https'
http = ...
0
votes
1answer
108 views
Can't fetch data with Ruby and Basecamp API
My code:
require 'rubygems'
require 'basecamp'
basecamp = Basecamp.establish_connection!('example.basecamphq.com', 'example', '123456', true)
projects = Basecamp::Project.find(:all)
projects.inspect
...
0
votes
0answers
198 views
ActiveSupport XML to Hash Typecasting failing on escaped parameter
I'm doing some work with the Basecamp API using the 37Signals wrapper and have run into an issue with the way that ActiveSupport is handling the decoding of certain values. Specifically, it seems to ...
0
votes
1answer
2k views
Example of Basecamp API ruby wrapper usage
I've set up a new Rails 2.3.2 app and added the Basecamp API ruby wrapper to my /lib directory from here:
http://developer.37signals.com/basecamp/basecamp.rb
In my application_controller.rb I have ...