libnotify 0.0.4 → 0.0.5

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.
Files changed (5) hide show
  1. data/.gitignore +0 -1
  2. data/Rakefile +1 -0
  3. data/VERSION +1 -1
  4. data/libnotify.gemspec +59 -0
  5. metadata +3 -2
data/.gitignore CHANGED
@@ -2,4 +2,3 @@ doc
2
2
  pkg
3
3
  coverage
4
4
  tags
5
- *.gemspec
data/Rakefile CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'rake'
2
2
  require 'rake/rdoctask'
3
+ require 'rubygems'
3
4
 
4
5
  begin
5
6
  require 'jeweler'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.0.5
data/libnotify.gemspec ADDED
@@ -0,0 +1,59 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{libnotify}
8
+ s.version = "0.0.5"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Peter Suschlik"]
12
+ s.date = %q{2010-02-05}
13
+ s.email = %q{peter-libnotify@suschlik.de}
14
+ s.extra_rdoc_files = [
15
+ "README.rdoc"
16
+ ]
17
+ s.files = [
18
+ ".gitignore",
19
+ ".watchr",
20
+ "README.rdoc",
21
+ "Rakefile",
22
+ "VERSION",
23
+ "lib/libnotify.rb",
24
+ "libnotify.gemspec",
25
+ "test/helper.rb",
26
+ "test/test_libnotify.rb"
27
+ ]
28
+ s.homepage = %q{http://github.com/splattael/libnotify}
29
+ s.rdoc_options = ["--charset=UTF-8"]
30
+ s.require_paths = ["lib"]
31
+ s.rubygems_version = %q{1.3.5}
32
+ s.summary = %q{Ruby bindings for libnotify using FFI}
33
+ s.test_files = [
34
+ "test/test_libnotify.rb"
35
+ ]
36
+
37
+ if s.respond_to? :specification_version then
38
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
39
+ s.specification_version = 3
40
+
41
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
42
+ s.add_runtime_dependency(%q<ffi>, [">= 0"])
43
+ s.add_development_dependency(%q<riot>, [">= 0"])
44
+ s.add_development_dependency(%q<riot_notifier>, [">= 0.0.7"])
45
+ s.add_development_dependency(%q<rr>, [">= 0"])
46
+ else
47
+ s.add_dependency(%q<ffi>, [">= 0"])
48
+ s.add_dependency(%q<riot>, [">= 0"])
49
+ s.add_dependency(%q<riot_notifier>, [">= 0.0.7"])
50
+ s.add_dependency(%q<rr>, [">= 0"])
51
+ end
52
+ else
53
+ s.add_dependency(%q<ffi>, [">= 0"])
54
+ s.add_dependency(%q<riot>, [">= 0"])
55
+ s.add_dependency(%q<riot_notifier>, [">= 0.0.7"])
56
+ s.add_dependency(%q<rr>, [">= 0"])
57
+ end
58
+ end
59
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libnotify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Suschlik
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-18 00:00:00 +01:00
12
+ date: 2010-02-05 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -67,6 +67,7 @@ files:
67
67
  - Rakefile
68
68
  - VERSION
69
69
  - lib/libnotify.rb
70
+ - libnotify.gemspec
70
71
  - test/helper.rb
71
72
  - test/test_libnotify.rb
72
73
  has_rdoc: true