lev 7.0.1 → 7.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/lev/routine.rb +5 -2
- data/lib/lev/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b058526f574463059a8b4e17a129ae2bcb760214
|
4
|
+
data.tar.gz: 05e4c081fb7c6828f82971a9135dac5e3c42aec4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20f82c60f67ebc6262e0d22fae356989a71eaa8444fd2e11b1df24fa0d6daa71e1179140e65457368278bb1710e982f7b78b3938ae225cff151974deb4c5af2a
|
7
|
+
data.tar.gz: 6771464edd118c4536167e8a085bc692081e10d322f43a5611ea271f2093cff32a85ea9d5e3ba54f2acc8c1821a005ace679c3f675963c35242a54542f05ee7f
|
data/lib/lev/routine.rb
CHANGED
@@ -433,13 +433,16 @@ module Lev
|
|
433
433
|
def initialize(status = nil)
|
434
434
|
# If someone cares about the status, they'll pass it in; otherwise all
|
435
435
|
# status updates go into the bit bucket.
|
436
|
-
@status = status
|
436
|
+
@status = status
|
437
437
|
end
|
438
438
|
|
439
439
|
protected
|
440
440
|
|
441
441
|
attr_writer :runner
|
442
|
-
|
442
|
+
|
443
|
+
def status
|
444
|
+
@status ||= Lev::NullStatus.new
|
445
|
+
end
|
443
446
|
|
444
447
|
def result
|
445
448
|
@result ||= Result.new(Outputs.new,
|
data/lib/lev/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JP Slavinsky
|
@@ -292,7 +292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
292
292
|
version: '0'
|
293
293
|
requirements: []
|
294
294
|
rubyforge_project:
|
295
|
-
rubygems_version: 2.4.
|
295
|
+
rubygems_version: 2.4.5.1
|
296
296
|
signing_key:
|
297
297
|
specification_version: 4
|
298
298
|
summary: Ride the rails but don't touch them.
|