# ruby_gntp **Repository Path**: mirrors_camsong/ruby_gntp ## Basic Information - **Project Name**: ruby_gntp - **Description**: Ruby library for GNTP(Growl Notification Transport Protocol) client - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Ruby library for GNTP(Growl Notification Transport Protocol) Sorry, document is not avilable now. Usage example: require 'rubygems' require 'ruby_gntp' # -- Standard way growl = GNTP.new("Ruby/GNTP self test") growl.register({:notifications => [{ :name => "notify", :enabled => true, }]}) growl.notify({ :name => "notify", :title => "Congraturation", :text => "Congraturation! You are successful install ruby_gntp.", :icon => "http://www.hatena.ne.jp/users/sn/snaka72/profile.gif", :sticky=> true, }) # -- Instant notification GNTP.notify({ :app_name => "Instant notify", :title => "Instant notification", :text => "Instant notification available now.", :icon => "http://www.hatena.ne.jp/users/sn/snaka72/profile.gif", })