adammck/ruby-icloud

Markdown example needs fixing

Opened this issue · 7 comments

In second code block of markdown file, should be Need & symbol for session.reminders.first(3).map(&:title).

nbar1 commented

Can you also please add an example on how to add a reminder to a specific list. New to ruby here and having trouble.

troy commented

@nbar1: This gem is basically unmaintained. You're on your own.

Happy to review pull requests, but as @troy said, this gem isn't really maintained. Sorry about that.

@adammck or @troy, is there an official iCloud Reminders API that is documented somewhere? How was this ruby gem created?

Not to my knowledge, no. This was originally implemented using the internal/undocumented API which the reminders web app on iCloud.com uses. It works, but it would almost certainly be better to use the EventKit framework (via ObjC or Swift), like keith/reminders-cli does.

troy commented

@shurcooL I can confirm what @adammck said. There's no official API at all, let alone docs for it. Use this at your own risk and expect it to break subtly and with zero notice.

I see, that's very helpful, thank you!