extra_print 1.1.5 → 1.1.6
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 +4 -3
- 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: c00ec4f7670090331d6e7958c40082a4a1f553f8
|
4
|
+
data.tar.gz: 4da248a381e83dbf40cb855e5f2fd563eeb8df34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7fcc4f3a4bfe8ebbf800a8083b16ae11e40161559937fc1e8ff8d2cfc36383aaf0632686f489f888aed7056f71dccb975055b40c72ea30a8567947f66dad40e
|
7
|
+
data.tar.gz: fcc38e669f719bd9febe2730a3b339d08b6aa28ce44690256961c12cc419ea185ac29ce562adfaae7900e3f6a7bc5afb992a525fc5005db7afb169e06c8c30f9
|
data/lib/extra_print.rb
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
$COLORS = {'red' => '031','green' => '032','yellow' => '033','blue' => '034','magenta' => '035','cyan' => '036'}
|
2
|
-
$EMOJIS = %w"😎 😈 👹 👺 👻 👿 💀 👽 😂 🤣 🎃 🐶 🦊 ⭐ 🌟 🏈 🏀 ⚽ ⛔ ❓ 💽 🎁 🌠 🥓 🍤 🍗 🍖 🍕 🍰 🍦 🍭"
|
2
|
+
$EMOJIS = %w"😎 😈 👹 👺 👻 👿 💀 👽 😂 🤣 🎃 🐶 🦊 ⭐ 🌟 🏈 🏀 ⚽ ⛔ ♻️ ❓ 💽 🎁 🌠 🥓 🥑 🥦 🍤 🍗 🍖 🍕 🍰 🥃 💰 🍦 🍭 🤯 🤬 🐞 💛 💚 💙 💜"
|
3
3
|
|
4
4
|
#### DEBUGGING gems ####
|
5
5
|
# require 'awesome_print'
|
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
10
|
# Using ANSI color coding to spruce things up
|
13
11
|
# SYNTAX: \033[COLOR_CODEmINNER_TEXT\033[0m
|
14
12
|
# There are cleaner ways of doing the color manipulation
|
15
13
|
# But this approach avoids extra dependencies, which is better :-)
|
16
14
|
|
15
|
+
# Simply call ep or eap (extra_awesome_print) and pass a variable you want to inspect.
|
16
|
+
# Alternatively, call ep or eap with no arguments to display an emoji line break when evaluated.
|
17
|
+
|
17
18
|
def ep(*args)
|
18
19
|
@caller_path = caller
|
19
20
|
return display_emoji_break if args.empty?
|
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.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hunter T. Chapman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|