ricecream 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ricecream/analyzer.rb +2 -2
- data/lib/ricecream/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cff31eb924e068fa9e0778e5e23cbb17e80db8a91291467fa58e76e704204d9
|
4
|
+
data.tar.gz: 5570dd392b71a4a12d73d7aea6f66218149cf256124a68a5787c14561607c481
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e75503929c08cddf078ce86e7e1ce7127649465a3bec31e7523d3573a106ee3b52c9b8448b19748be120c57afdbff6b01ded2ccd78440935239d4501863e8f2
|
7
|
+
data.tar.gz: b200d30117c3b0bab06564e88ca9efc689596d89e35e6a8c435a1d17eda0ed36c5fba367074273712fc8fda63285218bcfaefd51eb229a16cce9c5ff4f372e04
|
data/lib/ricecream/analyzer.rb
CHANGED
@@ -10,8 +10,8 @@ module Ricecream
|
|
10
10
|
def initialize(path)
|
11
11
|
@ic_methods = []
|
12
12
|
@last_loc = [1, 0]
|
13
|
-
@path = File.absolute_path(path)
|
14
|
-
return unless File.
|
13
|
+
@path = File.absolute_path(path.to_s)
|
14
|
+
return unless File.file?(@path)
|
15
15
|
@script = File.binread(@path) + " "
|
16
16
|
super(@script, @path)
|
17
17
|
parse
|
data/lib/ricecream/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ricecream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nodai2hITC
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Never use puts/p to debug again! More useful debugging libraries than
|
14
14
|
puts / p. (A Ruby port of Python's IceCream.)
|