{"id":29955008,"url":"https://github.com/foca/kali","last_synced_at":"2025-10-06T13:00:05.158Z","repository":{"id":9540014,"uuid":"11444027","full_name":"foca/kali","owner":"foca","description":"Kali is a ruby implementation of the iCalendar standard, taken from RFC 5545.","archived":false,"fork":false,"pushed_at":"2020-06-22T12:22:27.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-09T01:41:37.714Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/foca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-16T08:03:52.000Z","updated_at":"2020-06-22T12:22:30.000Z","dependencies_parsed_at":"2022-09-13T17:51:27.242Z","dependency_job_id":null,"html_url":"https://github.com/foca/kali","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/foca/kali","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foca%2Fkali","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foca%2Fkali/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foca%2Fkali/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foca%2Fkali/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/foca","download_url":"https://codeload.github.com/foca/kali/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foca%2Fkali/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278614467,"owners_count":26015967,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-03T17:09:10.514Z","updated_at":"2025-10-06T13:00:05.137Z","avatar_url":"https://github.com/foca.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kali: iCalendar for the rest of us\n\n**NOTE**: This is public but in no way finished. Probably safer to not use it in production.\n\nKali attempts to provide a simple and extensible implementation of [RFC\n5545][rfc5545] and friends, which describe the iCalendar format, used for\nrepresenting and exchanging calendaring and scheduling information.\n\n[Kālī][wikipedia] is also the Hindu Goddess of Time.\n\n## Generating Calendars\n\nThe simplest example possible:\n\n``` ruby\nrequire \"uri\"\nrequire \"kali\"\n\ncalendar = Kali::Calendar.new do |cal|\n  cal.event do |event|\n    event.summary = \"Lunch\" # Or: event.summary = Kali::Property::Summary.new(\"Lunch\")\n    event.description = \"Let's get some food\"\n    event.dtstart = DateTime.civil(2013, 7, 31, 12, 30)\n    event.dtend = DateTime.civil(2013, 7, 31, 14, 30)\n\n    event.attendees.add URI(\"mailto:hi@nicolassanguinetti.info\") do |attendee|\n      attendee.partstat = \"ACCEPTED\"\n      attendee.cn = \"Nicolás Sanguinetti\"\n      attendee[\"X-GUEST-COUNT\"] = 2\n    end\n\n    event.attendees.add URI(\"mailto:someone@example.com\") # Simplified attendee\n  end\nend\n\nFile.open(\"cal.ics\", \"w\") { |f| f.puts(calendar.to_ics) }\n```\n\n[rfc5545]: http://tools.ietf.org/html/rfc5545\n[wikipedia]: http://en.wikipedia.org/wiki/Kali\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoca%2Fkali","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoca%2Fkali","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoca%2Fkali/lists"}