Skip to content

browsermedia/LiquidPlanner

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LiquidPlanner

The LiquidPlanner gem provides a simple way to access LiquidPlanner’s API.

To get started, look at the examples directory. They show how to perform some common tasks.

Typically you will want to create an API object:

lp = LiquidPlanner::Base.new(:email=>email, :password=>password)

With the api you can then get the user’s account or their workspaces:

account     = lp.account
workspaces  = lp.workspaces

Tasks can be listed and created by accessing a workspace:

workspace = lp.workspaces(7)                                # access a workspace by ID
tasks     = workspace.tasks                                 # list all the tasks
my_tasks  = workspace.tasks(:all, :filter=>'owner_id = me') # use a filter
new_task  = workspace.create_task(:name=>'Learn API')       # create and save a new task

For more information, visit the LiquidPlanner developer pages at www.liquidplanner.com/support/articles/developer-tools/

About

LiquidPlanner's Online Project Management Ruby API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 99.5%
  • Shell 0.5%