updater 0.9.3.1 → 0.9.3.2
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/LICENSE +1 -1
- data/README.markdown +7 -1
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/lib/updater/update.rb +1 -1
- metadata +4 -4
data/LICENSE
CHANGED
data/README.markdown
CHANGED
@@ -515,4 +515,10 @@ Example: We could replace the `logging_job` above like this
|
|
515
515
|
:failure=>{MyLoggingClass.logging_job=>{:message=>"an Epic Fail"}}
|
516
516
|
)
|
517
517
|
|
518
|
-
See Also: Once it is started, see the example in Updater::Chains -- pending
|
518
|
+
See Also: Once it is started, see the example in Updater::Chains -- pending
|
519
|
+
|
520
|
+
Copying
|
521
|
+
=======
|
522
|
+
|
523
|
+
Updater is written and maintained by John F. Miller. Copyright (c) 2010.
|
524
|
+
This software is licenced under the MIT licence. See LICENCE for details.
|
data/Rakefile
CHANGED
@@ -31,6 +31,7 @@ spec = Gem::Specification.new do |s|
|
|
31
31
|
s.add_development_dependency('chronic', '>= 0.2.3')
|
32
32
|
s.require_path = 'lib'
|
33
33
|
s.bindir = 'bin'
|
34
|
+
s.executables = 'updater'
|
34
35
|
s.files = %w(LICENSE README.markdown Rakefile VERSION) + Dir.glob("{lib,spec,bin}/**/*")
|
35
36
|
|
36
37
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.3.
|
1
|
+
0.9.3.2
|
data/lib/updater/update.rb
CHANGED
@@ -60,7 +60,7 @@ module Updater
|
|
60
60
|
|
61
61
|
# orm_inst must be set to an instacne of the class Update.orm
|
62
62
|
def initialize(orm_inst)
|
63
|
-
raise ArgumentError if orm_inst.nil? || !orm_inst.kind_of?(orm)
|
63
|
+
raise ArgumentError if orm_inst.nil? || !orm_inst.kind_of?(self.class.orm)
|
64
64
|
@orm = orm_inst
|
65
65
|
end
|
66
66
|
|
metadata
CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
|
|
6
6
|
- 0
|
7
7
|
- 9
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.9.3.
|
9
|
+
- 2
|
10
|
+
version: 0.9.3.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- John F. Miller
|
@@ -80,8 +80,8 @@ dependencies:
|
|
80
80
|
version_requirements: *id004
|
81
81
|
description: A job queue which is ORM Agnostic and has advanced Error Handling
|
82
82
|
email: emperor@antarestrader.com
|
83
|
-
executables:
|
84
|
-
|
83
|
+
executables:
|
84
|
+
- updater
|
85
85
|
extensions: []
|
86
86
|
|
87
87
|
extra_rdoc_files:
|