riot_notifier 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,4 @@ doc
2
2
  pkg
3
3
  coverage
4
4
  tags
5
+ .bundle
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm gemset create riot_notifier
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "riot"
4
+ gem "riot_notifier"
5
+
6
+ group :test do
7
+ gem "jeweler"
8
+ gem "libnotify"
9
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,47 @@
1
+ ---
2
+ dependencies:
3
+ libnotify:
4
+ group:
5
+ - :test
6
+ version: ">= 0"
7
+ jeweler:
8
+ group:
9
+ - :test
10
+ version: ">= 0"
11
+ riot_notifier:
12
+ group:
13
+ - :default
14
+ version: ">= 0"
15
+ riot:
16
+ group:
17
+ - :default
18
+ version: ">= 0"
19
+ specs:
20
+ - rake:
21
+ version: 0.8.7
22
+ - ffi:
23
+ version: 0.6.3
24
+ - json_pure:
25
+ version: 1.4.3
26
+ - gemcutter:
27
+ version: 0.5.0
28
+ - git:
29
+ version: 1.2.5
30
+ - rubyforge:
31
+ version: 2.0.4
32
+ - jeweler:
33
+ version: 1.4.0
34
+ - libnotify:
35
+ version: 0.1.4
36
+ - rr:
37
+ version: 0.10.11
38
+ - term-ansicolor:
39
+ version: 1.0.5
40
+ - riot:
41
+ version: 0.11.2
42
+ - riot_notifier:
43
+ version: 0.1.1
44
+ hash: 6a111bec9b2b682a5f223928b9f0e22aad77edaa
45
+ sources:
46
+ - Rubygems:
47
+ uri: http://rubygems.org
data/README.rdoc CHANGED
@@ -51,6 +51,14 @@ like libnotify.
51
51
 
52
52
  gem install riot_notifier
53
53
 
54
+ == Testing
55
+
56
+ git co git://github.com/splattael/riot_notifier.git
57
+ cd riot_notifier
58
+ gem install bundler
59
+ bundle install
60
+ rake
61
+
54
62
  == Authors
55
63
  * Peter Suschlik
56
64
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.2.0
@@ -0,0 +1,7 @@
1
+ # Monkeypatches
2
+
3
+ class Symbol
4
+ def to_proc
5
+ proc { |obj, *args| obj.send(self, *args) }
6
+ end unless method_defined?(:to_proc)
7
+ end
data/lib/riot_notifier.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'riot'
2
2
 
3
+ require 'riot_notifier/ext'
3
4
  require 'riot_notifier/module'
4
5
  require 'riot_notifier/base'
5
6
 
@@ -5,23 +5,27 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{riot_notifier}
8
- s.version = "0.1.1"
8
+ s.version = "0.2.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Peter Suschlik"]
12
- s.date = %q{2010-03-01}
12
+ s.date = %q{2010-07-11}
13
13
  s.email = %q{peter-riot_notifier@suschlik.de}
14
14
  s.extra_rdoc_files = [
15
15
  "README.rdoc"
16
16
  ]
17
17
  s.files = [
18
18
  ".gitignore",
19
+ ".rvmrc",
19
20
  ".watchr",
21
+ "Gemfile",
22
+ "Gemfile.lock",
20
23
  "README.rdoc",
21
24
  "Rakefile",
22
25
  "VERSION",
23
26
  "lib/riot_notifier.rb",
24
27
  "lib/riot_notifier/base.rb",
28
+ "lib/riot_notifier/ext.rb",
25
29
  "lib/riot_notifier/libnotify.rb",
26
30
  "lib/riot_notifier/module.rb",
27
31
  "lib/riot_notifier/none.rb",
@@ -33,7 +37,7 @@ Gem::Specification.new do |s|
33
37
  s.homepage = %q{http://github.com/splattael/riot_notifier}
34
38
  s.rdoc_options = ["--charset=UTF-8"]
35
39
  s.require_paths = ["lib"]
36
- s.rubygems_version = %q{1.3.6}
40
+ s.rubygems_version = %q{1.3.7}
37
41
  s.summary = %q{Simple notifier for riot}
38
42
  s.test_files = [
39
43
  "test/test_riot_notifier.rb"
@@ -43,7 +47,7 @@ Gem::Specification.new do |s|
43
47
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
48
  s.specification_version = 3
45
49
 
46
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
51
  s.add_runtime_dependency(%q<riot>, [">= 0.10.12"])
48
52
  s.add_development_dependency(%q<riot_notifier>, [">= 0"])
49
53
  s.add_development_dependency(%q<libnotify>, [">= 0"])
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riot_notifier
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 23
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
- - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
10
11
  platform: ruby
11
12
  authors:
12
13
  - Peter Suschlik
@@ -14,16 +15,18 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-03-01 00:00:00 +01:00
18
+ date: 2010-07-11 00:00:00 +02:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: riot
22
23
  prerelease: false
23
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
24
26
  requirements:
25
27
  - - ">="
26
28
  - !ruby/object:Gem::Version
29
+ hash: 47
27
30
  segments:
28
31
  - 0
29
32
  - 10
@@ -35,9 +38,11 @@ dependencies:
35
38
  name: riot_notifier
36
39
  prerelease: false
37
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
38
42
  requirements:
39
43
  - - ">="
40
44
  - !ruby/object:Gem::Version
45
+ hash: 3
41
46
  segments:
42
47
  - 0
43
48
  version: "0"
@@ -47,9 +52,11 @@ dependencies:
47
52
  name: libnotify
48
53
  prerelease: false
49
54
  requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
50
56
  requirements:
51
57
  - - ">="
52
58
  - !ruby/object:Gem::Version
59
+ hash: 3
53
60
  segments:
54
61
  - 0
55
62
  version: "0"
@@ -65,12 +72,16 @@ extra_rdoc_files:
65
72
  - README.rdoc
66
73
  files:
67
74
  - .gitignore
75
+ - .rvmrc
68
76
  - .watchr
77
+ - Gemfile
78
+ - Gemfile.lock
69
79
  - README.rdoc
70
80
  - Rakefile
71
81
  - VERSION
72
82
  - lib/riot_notifier.rb
73
83
  - lib/riot_notifier/base.rb
84
+ - lib/riot_notifier/ext.rb
74
85
  - lib/riot_notifier/libnotify.rb
75
86
  - lib/riot_notifier/module.rb
76
87
  - lib/riot_notifier/none.rb
@@ -88,23 +99,27 @@ rdoc_options:
88
99
  require_paths:
89
100
  - lib
90
101
  required_ruby_version: !ruby/object:Gem::Requirement
102
+ none: false
91
103
  requirements:
92
104
  - - ">="
93
105
  - !ruby/object:Gem::Version
106
+ hash: 3
94
107
  segments:
95
108
  - 0
96
109
  version: "0"
97
110
  required_rubygems_version: !ruby/object:Gem::Requirement
111
+ none: false
98
112
  requirements:
99
113
  - - ">="
100
114
  - !ruby/object:Gem::Version
115
+ hash: 3
101
116
  segments:
102
117
  - 0
103
118
  version: "0"
104
119
  requirements: []
105
120
 
106
121
  rubyforge_project:
107
- rubygems_version: 1.3.6
122
+ rubygems_version: 1.3.7
108
123
  signing_key:
109
124
  specification_version: 3
110
125
  summary: Simple notifier for riot