Sha256: 2e5259c4c9ca49c9cdfeab79d084307aa3f7295663434f405fb5e62d971b8815

Contents?: true

Size: 575 Bytes

Versions: 3

Compression:

Stored size: 575 Bytes

Contents

# mac-event-monitor

A Library to Monitor User Interactions

## Installation

    $ gem install mac-event-monitor

## Usage

    require 'mac-event-monitor'

    monitor = Mac::EventMonitor::Monitor.new
    monitor.add_listener(:mouse_down) do |event|
      puts [event.location.x, event.location.y].join(',')
    end
    monitor.run

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mac-event-monitor-0.1.0 README.md
mac-event-monitor-0.0.3 README.md
mac-event-monitor-0.0.2 README.md