Sign-in

LiquidPlanner
30-day free trial
30-second sign-up

About our forums

Our forum platform uses a separate login to identify you; it's not the same as your LiquidPlanner application login.

>> Login to the forums now 

If you wish to post and subscribe to change notifications, you will need to create a forum account.

After you login, you can access your profile by clicking your name floating at the top of the page. Clicking your name will also allow you to subscribe to e-mail change notification messages for the section you are currently looking at. 

Note, the forums are a public area. Do not post any private workspace content.

Join the LiquidPlanner Developer Forum > get tasks by user

I am working on a ruby class that connects to the LP API... but I am having some trouble with getting tasks based upon a single username... does anyone know of a call that could be made to the API that would do this?

August 31, 2010 | Registered Commenterdennis monsewicz

Hi Dennis,
If you're using ruby, you might want to take a look at the library we put together, it's hosted on github. And can also just be installed with the typical "gem install liquidplanner". There are some examples in there as well to help get you going.

August 31, 2010 | Registered CommenterAdam

I just installed the gem, but when I require it in my script, I receive the error message of LoadError: no such file to load — liquidplanner

August 31, 2010 | Registered Commenterdennis monsewicz

Hi Dennis,
If you had any of the rails3 betas installed, that could cause a problem. I just pushed out a new version of the gem which should ensure it doesn't become an issue.

Barring that, it is a gem, so on some systems you will need to require ruby gems.

require 'rubygems'
require 'liquidplanner'
lp = LiquidPlanner::Base.new(:email=>'my_email', :password=>'my_password')
workspace = lp.workspaces(my_space_id)

Take a look at the examples for some more information.

September 2, 2010 | Registered CommenterAdam