rowl 1.0.0 → 1.1.0
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/README.md +2 -7
- data/VERSION +1 -1
- data/rowl.gemspec +53 -0
- metadata +3 -2
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Installation
|
|
|
6
6
|
============
|
|
7
7
|
|
|
8
8
|
As a RubyGem
|
|
9
|
-
|
|
9
|
+
sudo gem sources -a http://gemcutter.org (If you haven't already)
|
|
10
10
|
sudo gem install rowl
|
|
11
11
|
|
|
12
12
|
Since Rowl is tiny (and has no dependencies), you may just want to drop it into an existing project
|
|
@@ -39,12 +39,7 @@ Load it (as a gem)
|
|
|
39
39
|
Use it like so
|
|
40
40
|
|
|
41
41
|
registration = Rowl::Registration.new("My Application", [{:name => "My Notification", :enabled => true}, {:name => "My Other Notification Type", :enabled => false}])
|
|
42
|
-
Rowl::Notification.new( :application => registration.application,
|
|
43
|
-
:notification => registration.notifications.first,
|
|
44
|
-
:host => "localhost",
|
|
45
|
-
:password => registration.password,
|
|
46
|
-
:title => "Title",
|
|
47
|
-
:description => "Description" )
|
|
42
|
+
Rowl::Notification.new( :application => registration.application, :notification => registration.notifications.first, :host => "localhost", :password => registration.password, :title => "Title", :description => "Description" )
|
|
48
43
|
|
|
49
44
|
Patches, Bugs & Hatemail
|
|
50
45
|
========================
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.1.0
|
data/rowl.gemspec
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{rowl}
|
|
8
|
+
s.version = "1.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jason Madigan"]
|
|
12
|
+
s.date = %q{2009-10-16}
|
|
13
|
+
s.description = %q{Rowl is a simple Growl notification sender for Ruby.}
|
|
14
|
+
s.email = %q{jason@jasonmadigan.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.md"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.md",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/rowl.rb",
|
|
27
|
+
"rowl.gemspec",
|
|
28
|
+
"test/rowl_test.rb",
|
|
29
|
+
"test/test_helper.rb"
|
|
30
|
+
]
|
|
31
|
+
s.homepage = %q{http://github.com/jasonmadigan/rowl}
|
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
33
|
+
s.require_paths = ["lib"]
|
|
34
|
+
s.rubygems_version = %q{1.3.5}
|
|
35
|
+
s.summary = %q{Rowl is a simple Growl notification sender for Ruby.}
|
|
36
|
+
s.test_files = [
|
|
37
|
+
"test/rowl_test.rb",
|
|
38
|
+
"test/test_helper.rb"
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
if s.respond_to? :specification_version then
|
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
43
|
+
s.specification_version = 3
|
|
44
|
+
|
|
45
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
46
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
47
|
+
else
|
|
48
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
49
|
+
end
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
52
|
+
end
|
|
53
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rowl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Madigan
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-10-
|
|
12
|
+
date: 2009-10-16 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -39,6 +39,7 @@ files:
|
|
|
39
39
|
- Rakefile
|
|
40
40
|
- VERSION
|
|
41
41
|
- lib/rowl.rb
|
|
42
|
+
- rowl.gemspec
|
|
42
43
|
- test/rowl_test.rb
|
|
43
44
|
- test/test_helper.rb
|
|
44
45
|
has_rdoc: true
|