An open API service indexing awesome lists of open source software.

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

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