0.0
No commit activity in last 3 years
No release in over 3 years
Make gem `growl` support windows
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 0
 Project Readme

growl_windows

Make gem growl support windows. As you could have known, gem growl only support MacOS.

To solve the problem on Windows, gem growl_windows come out, which has same syntaxes with gem growl!

Install

First, you must install software Growl for windows .

And then:

gem install growl_windows

That's all, you can enjoy it!

Usage

require 'growl_windows'
Growl.notify("Hello Windows", title: "Growl Test")

If it print some error like this:

# Find growl path from registry failed!
#  You can use e.g. Grow.register_binpath('C:\Program Files\Growl for windows\growlnotify.exe') before notifying.

You can do this with growl installation path of yourself:

require 'growl_windows'
Growl.register_binpath('C:\Program Files\Growl for windows\growlnotify.exe')
Growl.notify("Hello Windows", title: "Growl Test")

OK, other options is supported same as gem growl, you can find it from it's homepage.

Bitdeli Badge