last_hit 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/last_hit/cli.rb +1 -1
- data/lib/last_hit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2742732a7571a78869368d815a09e3caa850ec47
|
4
|
+
data.tar.gz: f3f579950641855588e70910b6e503c8934b51b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23e4c4ac5bede7e5e7ee4043a1453b6f4a8393ff0eaecaee2df17e3ab60a959fb7ee937f91287a7cf301d6307b8b67ad1c55bef66d3334979aab59b0a06c5262
|
7
|
+
data.tar.gz: 00decfe1b1fcb038848e473e0bd577fd2a69e93ce86e07d6afd1094e4de536c888d8bff9d268f90cbc22e73476d2942392d542ef5a9816b99467c1891b81f8fb
|
data/lib/last_hit/cli.rb
CHANGED
@@ -11,7 +11,7 @@ class LastHit
|
|
11
11
|
|
12
12
|
class << self
|
13
13
|
def load_config(path)
|
14
|
-
fail(FileNotFound, 'Config file not found')
|
14
|
+
fail(FileNotFound, 'Config file not found') if File.file?(path)
|
15
15
|
config = YAML.load_file(File.expand_path(path))
|
16
16
|
Configure.set(config)
|
17
17
|
rescue FileNotFound => e
|
data/lib/last_hit/version.rb
CHANGED