Skip to content

lodestone/thl-ruby

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

thl-ruby

A library to simplify interaction with The Hit List using Ruby and the AppleScript Scripting Bridge.

Examples:

Display tasks by list (all folders):

require 'lib/thl'
thl = THL.new

thl.lists.each do |list|
  puts "#{list.name}:"
  list.tasks.each do |task|
    puts "* #{task.title}"
  end
  puts "\n"
end

See the "examples" directory for more.

TODO:

  • Package as a gem
  • Add documentation
  • Add more wrappers

About

A Ruby library to simplify interaction with The Hit List.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published