dmarkow / slimtimer4r

Ruby Wrapper for the SlimTimer API

This URL has Read+Write access

commit  463109b24b2bfce5bd7166c2df4d51a97a1513ad
tree    ac6a21416b352d2b5a9f2267d7573b08692ccd02
parent  98d5caddadaaa0ef812147f8df8a7fc82fe3128c
name age message
file History.txt Loading commit data...
file Manifest.txt
file README.txt
file Rakefile
directory bin/
file init.rb
directory lib/
directory test/
README.txt
== SlimTimer4R

== Overview

A basic wrapper against the SlimTimer (www.slimtimer.com) API.

== Installation

Install via RubyGems:

  sudo gem install slimtimer4r

== Usage

  require 'slimtimer4r'

  slimtimer = SlimTimer.new("EMAIL", "PASSWORD", "API_KEY")
  tasks = slimtimer.list_tasks
    => [#<Record(Task) "name"=>"Ta...">, #<Record(Task) "name"=>"Br...">...]

== Thanks
- 37 Signals for their sample Backpack/Basecamp Ruby wrappers

== Author
- Dylan Markow (dylan@dylanmarkow.com)


== License

(The MIT License)

Copyright (c) 2008

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.