ruby-snarl 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/doc/created.rid +1 -1
- data/doc/files/examples/example2_rb.html +1 -1
- data/doc/index.html +23 -23
- data/examples/example2.rb +2 -2
- data/ruby-snarl.gemspec +1 -1
- metadata +1 -1
data/doc/created.rid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Tue Aug 08
|
1
|
+
Tue Aug 08 12:46:15 Eastern Standard Time 2006
|
data/doc/index.html
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
5
|
-
|
6
|
-
<!--
|
7
|
-
|
8
|
-
RDoc Documentation
|
9
|
-
|
10
|
-
-->
|
11
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
12
|
-
<head>
|
13
|
-
<title>RDoc Documentation</title>
|
14
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
15
|
-
</head>
|
16
|
-
<frameset rows="20%, 80%">
|
17
|
-
<frameset cols="25%,35%,45%">
|
18
|
-
<frame src="fr_file_index.html" title="Files" name="Files" />
|
19
|
-
<frame src="fr_class_index.html" name="Classes" />
|
20
|
-
<frame src="fr_method_index.html" name="Methods" />
|
21
|
-
</frameset>
|
22
|
-
<frame src="
|
23
|
-
</frameset>
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
5
|
+
|
6
|
+
<!--
|
7
|
+
|
8
|
+
RDoc Documentation
|
9
|
+
|
10
|
+
-->
|
11
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
12
|
+
<head>
|
13
|
+
<title>RDoc Documentation</title>
|
14
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
15
|
+
</head>
|
16
|
+
<frameset rows="20%, 80%">
|
17
|
+
<frameset cols="25%,35%,45%">
|
18
|
+
<frame src="fr_file_index.html" title="Files" name="Files" />
|
19
|
+
<frame src="fr_class_index.html" name="Classes" />
|
20
|
+
<frame src="fr_method_index.html" name="Methods" />
|
21
|
+
</frameset>
|
22
|
+
<frame src="files/examples/example1_rb.html" name="docwin" />
|
23
|
+
</frameset>
|
24
24
|
</html>
|
data/examples/example2.rb
CHANGED
@@ -3,12 +3,12 @@ require 'snarl'
|
|
3
3
|
puts "Snarl Version: #{Snarl.version}"
|
4
4
|
|
5
5
|
10.downto(1) do |i|
|
6
|
-
Snarl.show_message("Message", "Counting down #{i}", i)
|
6
|
+
Snarl.show_message("Message", "Counting down #{i}", nil, i)
|
7
7
|
end
|
8
8
|
|
9
9
|
sleep 11
|
10
10
|
|
11
11
|
10.times do |i|
|
12
|
-
Snarl.show_message("Message", "Counting down #{i+1}", i+1)
|
12
|
+
Snarl.show_message("Message", "Counting down #{i+1}", nil, i+1)
|
13
13
|
end
|
14
14
|
|
data/ruby-snarl.gemspec
CHANGED
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ruby-snarl
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
6
|
+
version: 0.0.8
|
7
7
|
date: 2006-08-08 00:00:00 -04:00
|
8
8
|
summary: Snarl (http://www.fullphat.net/snarl.html) is a simple notification system, similar to Growl under OSX. This is a simple pure Ruby wrapper to the native API (using DL).
|
9
9
|
require_paths:
|