adammck / ruby-icloud

Ruby library to access Apple's iCloud (Just reminders, for now)
MIT License
126 stars 17 forks source link

Markdown example needs fixing #12

Open Riveascore opened 9 years ago

Riveascore commented 9 years ago

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

nbar1 commented 8 years ago

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 8 years ago

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

adammck commented 8 years ago

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

dmitshur commented 8 years ago

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

adammck commented 8 years ago

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 8 years ago

@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.

dmitshur commented 8 years ago

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