Vyacheslav Loginov
Vyacheslav Loginov

Reputation: 3216

ruby async monitoring

I want to monitor last modified files in browser in real time.

i.e. I am editing file in my editor, and when I press Ctrl+S, browser change displayed information, also file shared in local network, and I want to monitor changes from other people

What ruby libraries(or maybe not only ruby) I must to use?

Upvotes: 0

Views: 130

Answers (1)

d11wtq
d11wtq

Reputation: 35308

You probably want to use Guard, which is just a wrapper around whatever the OS provides, such as inotify or kqueues.

Upvotes: 1

Related Questions