https://github.com/pioz/exception_alarm
Play alarm sound when an exception is raised
https://github.com/pioz/exception_alarm
alarm alert exceptions ruby sound
Last synced: about 1 year ago
JSON representation
Play alarm sound when an exception is raised
- Host: GitHub
- URL: https://github.com/pioz/exception_alarm
- Owner: pioz
- License: mit
- Created: 2017-08-02T23:37:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-02T23:53:02.000Z (over 8 years ago)
- Last Synced: 2024-04-23T15:01:48.718Z (about 2 years ago)
- Topics: alarm, alert, exceptions, ruby, sound
- Language: Ruby
- Size: 121 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ExceptionAlarm
This simple gem play an alarm sound when an exception is raised on your Ruby
code.
## Installation
$ brew install mpg123
or
$ apt-get install mpg123
$ gem install exception_alarm
ExceptionAlarm use the command line program [`mpg123`](https://www.mpg123.de/)
to play mp3 alarm file. So you have to install it on your environment.
## Usage
require 'exception_alarm'
alarm do
# your code...
raise 'play alarm sound'
end
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/pioz/exception_alarm.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).