hookr 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/Rakefile +3 -1
- data/lib/hookr.rb +1 -1
- metadata +22 -3
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -21,8 +21,10 @@ PROJ.url = 'http://hookr.rubyforge.org'
|
|
21
21
|
PROJ.version = HookR::VERSION
|
22
22
|
PROJ.rubyforge.name = 'hookr'
|
23
23
|
|
24
|
-
# TODO I want to be able to use -w here
|
24
|
+
# TODO I want to be able to use -w here, but RSpec produces a hojillion warnings
|
25
25
|
PROJ.ruby_opts = []
|
26
26
|
PROJ.spec.opts << '--color'
|
27
27
|
|
28
|
+
depend_on 'fail-fast', '1.0.0'
|
29
|
+
|
28
30
|
# EOF
|
data/lib/hookr.rb
CHANGED
@@ -10,7 +10,7 @@ module HookR
|
|
10
10
|
# No need to document the boilerplate convenience methods defined by Mr. Bones.
|
11
11
|
# :stopdoc:
|
12
12
|
|
13
|
-
VERSION = '1.0.
|
13
|
+
VERSION = '1.0.1'
|
14
14
|
LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
|
15
15
|
PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hookr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Avdi Grimm
|
@@ -11,8 +11,27 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2008-12-03 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: fail-fast
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.0.0
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: bones
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.1.0
|
34
|
+
version:
|
16
35
|
description: HookR is a publish/subscribe callback hook facility for Ruby.
|
17
36
|
email: avdi@avdi.org
|
18
37
|
executables:
|