extra_print 1.1.4 → 1.1.5
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.
- checksums.yaml +4 -4
- data/lib/extra_print.rb +11 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8179a954b0c0364adaec148cde8370e5078d936
|
4
|
+
data.tar.gz: 65c83c346a17992098a962d74a967a187ff525ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28577c268809b3f1e8d1f1ceea9a85277817e85c895607382078036311d177eab003520c70e69ef6d9d90efaed6636e1140842d54e2880759d987e0665634cd4
|
7
|
+
data.tar.gz: e630b74253541c969e190e6baeb53f090da5869630f28c0bde31054113e58318906ef5474ad837e0c3581e4ffc05aa1eb052dd40bf76269182bd9e4835aab33a
|
data/lib/extra_print.rb
CHANGED
@@ -6,22 +6,25 @@ $EMOJIS = %w"😎 😈 👹 👺 👻 👿 💀 👽 😂 🤣 🎃 🐶 🦊
|
|
6
6
|
# require 'pry-byebug'
|
7
7
|
########################
|
8
8
|
|
9
|
+
# Simply call ep or eap (extra_awesome_print) and pass a variable you want to inspect.
|
10
|
+
# Alternatively, call ep or eap with no arguments to display an emoji line break when evaluated.
|
11
|
+
|
9
12
|
# Using ANSI color coding to spruce things up
|
10
13
|
# SYNTAX: \033[COLOR_CODEmINNER_TEXT\033[0m
|
11
14
|
# There are cleaner ways of doing the color manipulation
|
12
15
|
# But this approach avoids extra dependencies, which is better :-)
|
13
16
|
|
14
|
-
def
|
17
|
+
def ep(*args)
|
15
18
|
@caller_path = caller
|
16
19
|
return display_emoji_break if args.empty?
|
17
|
-
extra_print(args[0], args[1]
|
20
|
+
extra_print(args[0], args[1])
|
18
21
|
args[0]
|
19
22
|
end
|
20
23
|
|
21
|
-
def
|
24
|
+
def eap(*args)
|
22
25
|
@caller_path = caller
|
23
26
|
return display_emoji_break if args.empty?
|
24
|
-
extra_print(args[0], args[1])
|
27
|
+
extra_print(args[0], args[1], true)
|
25
28
|
args[0]
|
26
29
|
end
|
27
30
|
|
@@ -49,6 +52,10 @@ def display_variable(add_awesome_print)
|
|
49
52
|
proc = Proc.new { @variable }
|
50
53
|
if add_awesome_print
|
51
54
|
require 'awesome_print'
|
55
|
+
AwesomePrint.defaults = {
|
56
|
+
indent: -2, # left aligned
|
57
|
+
sort_keys: true, # sort hash keys
|
58
|
+
}
|
52
59
|
ap proc.call
|
53
60
|
else
|
54
61
|
p proc.call
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: extra_print
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Hunter Chapman
|
7
|
+
- Hunter T. Chapman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 1.8.0
|
33
|
-
description:
|
33
|
+
description: 'Debugging Companion: Informative variable wrappers || visual breaks.'
|
34
34
|
email: bootcoder@gmail.com
|
35
35
|
executables: []
|
36
36
|
extensions: []
|
37
37
|
extra_rdoc_files: []
|
38
38
|
files:
|
39
39
|
- lib/extra_print.rb
|
40
|
-
homepage:
|
40
|
+
homepage: https://github.com/bootcoder/extra_print
|
41
41
|
licenses:
|
42
42
|
- MIT
|
43
43
|
metadata: {}
|