extra_print 1.1.6 → 2.1.2

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.
Files changed (3) hide show
  1. checksums.yaml +5 -5
  2. data/lib/extra_print.rb +69 -26
  3. metadata +9 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c00ec4f7670090331d6e7958c40082a4a1f553f8
4
- data.tar.gz: 4da248a381e83dbf40cb855e5f2fd563eeb8df34
2
+ SHA256:
3
+ metadata.gz: adbf386d2dfa9903c26eae3c7e38bd6fbb4c741d17b04bd330711e7ba1be6661
4
+ data.tar.gz: 7cd482d6bdaad59efacacf7fa4e2e2adda5d8c28a3b4e4a115844cf706f3bfc8
5
5
  SHA512:
6
- metadata.gz: c7fcc4f3a4bfe8ebbf800a8083b16ae11e40161559937fc1e8ff8d2cfc36383aaf0632686f489f888aed7056f71dccb975055b40c72ea30a8567947f66dad40e
7
- data.tar.gz: fcc38e669f719bd9febe2730a3b339d08b6aa28ce44690256961c12cc419ea185ac29ce562adfaae7900e3f6a7bc5afb992a525fc5005db7afb169e06c8c30f9
6
+ metadata.gz: 9113e14108294da5bfeebb56cac2a3811114a7e79099e2662fd808687385353bdbc8e66ec502555d3a5384895200511b8b8553fe54dbfbce333715176656667f
7
+ data.tar.gz: e89ae3160cf57bc03668386fe6dcda1a022faa05a2d307e56165b19735cdc0194bdcdc7ebd04d597426c2ebae78c6eb74e6ee8bdca29d8f15e3b7af31ec70947
@@ -1,8 +1,8 @@
1
- $COLORS = {'red' => '031','green' => '032','yellow' => '033','blue' => '034','magenta' => '035','cyan' => '036'}
1
+ $COLORS = {'red' => '031','green' => '032','yellow' => '033','blue' => '094','magenta' => '035','cyan' => '036', 'gray' => '037', 'light_red' => '091', 'light_green' => '092', 'light_magenta' => '095', 'light_cyan' => '096'}
2
2
  $EMOJIS = %w"😎 😈 👹 👺 👻 👿 💀 👽 😂 🤣 🎃 🐶 🦊 ⭐ 🌟 🏈 🏀 ⚽ ⛔ ♻️ ❓ 💽 🎁 🌠 🥓 🥑 🥦 🍤 🍗 🍖 🍕 🍰 🥃 💰 🍦 🍭 🤯 🤬 🐞 💛 💚 💙 💜"
3
3
 
4
4
  #### DEBUGGING gems ####
5
- # require 'awesome_print'
5
+ # require 'amazing_print'
6
6
  # require 'pry-byebug'
7
7
  ########################
8
8
 
@@ -12,52 +12,94 @@ $EMOJIS = %w"😎 😈 👹 👺 👻 👿 💀 👽 😂 🤣 🎃 🐶 🦊
12
12
  # There are cleaner ways of doing the color manipulation
13
13
  # But this approach avoids extra dependencies, which is better :-)
14
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.
15
+ # Simply call pe or pea (extra_amazing_print) and pass a variable you want to inspect.
16
+ # Alternatively, call pe or pea with no arguments to display an emoji line break and calling line info.
17
+
18
+ def pe(*args)
19
+ @caller_path = caller
20
+ return display_emoji_break if args.empty?
21
+ extra_print(args[0], args[1])
22
+ return_value(args[0])
23
+ end
24
+
25
+ def pea(*args)
26
+ @caller_path = caller
27
+ return display_emoji_break if args.empty?
28
+ extra_print(args[0], args[1], true)
29
+ return_value(args[0])
30
+ end
31
+
32
+ #######################################################################
33
+ # NOTE: LEGACY CODE #ep #eap ensure compatibility for future versions #
34
+ #######################################################################
17
35
 
18
36
  def ep(*args)
19
37
  @caller_path = caller
20
38
  return display_emoji_break if args.empty?
21
39
  extra_print(args[0], args[1])
22
- args[0]
40
+ return_value(args[0])
23
41
  end
24
42
 
25
43
  def eap(*args)
26
44
  @caller_path = caller
27
45
  return display_emoji_break if args.empty?
28
46
  extra_print(args[0], args[1], true)
29
- args[0]
47
+ return_value(args[0])
30
48
  end
31
49
 
32
50
  private
33
51
 
34
- def extra_print(variable = nil, msg = nil, add_awesome_print = false)
52
+ def extra_print(variable = nil, msg = nil, add_amazing_print = false)
35
53
  # Set variables
36
- @color = $COLORS.values.sample
54
+ @msg = msg
37
55
  @variable = variable
38
- @msg = msg ? msg : " FINISH "
39
- # If the color being passed in is RED set secondary color to BLUE
40
- @secondary_color = @color == '031' ? '034' : '031'
41
-
42
- # View Methods
43
- display_detail_header
44
- display_variable(add_awesome_print)
45
- display_footer
56
+ set_colors
57
+ # Build upper, center, lower sections
58
+ display_detail_bar(true)
59
+ display_variable(add_amazing_print)
60
+ @msg ? display_msg_footer : display_detail_bar(false)
61
+ end
62
+
63
+ def set_colors
64
+ # No red/green if calling from a spec
65
+ @secondary_color = '092'
66
+ if $0.split('.').last[/spec|test/]
67
+ $COLORS.delete('red')
68
+ $COLORS.delete('light_red')
69
+ $COLORS.delete('light_green')
70
+ $COLORS.delete('green')
71
+ end
72
+ @color = $COLORS.values.sample
73
+ # If primary color passed is GREEN set secondary color to RED
74
+ @secondary_color = '031' if @color == '092'
75
+ @secondary_color = '031' if @color == '032'
76
+ end
77
+
78
+ # Checks to see if running in a Ruby file
79
+ # IF so returns value, enabling ep's from the end of a method without disrupting functionality.
80
+ # ELSE returns nil, presuming it is running in a REPL and we don't want to see our output doubled because the REPL prints the return value as well.
81
+ def return_value(val)
82
+ return val if defined?(Rails::Server)
83
+ return nil if defined?(Rails::Console)
84
+ return nil if $0.split('.').last.include? 'pry'
85
+ return nil if $0.split('.').last.include? 'irb'
86
+ return val if $0.split('.').last == 'rb'
87
+ val
46
88
  end
47
89
 
48
90
  def path_clip
49
91
  @caller_path[0].split('/').last(2).join('/').split(':in')[0]
50
92
  end
51
93
 
52
- def display_variable(add_awesome_print)
94
+ def display_variable(add_amazing_print)
53
95
  proc = Proc.new { @variable }
54
- if add_awesome_print
55
- require 'awesome_print'
56
- AwesomePrint.defaults = {
96
+ if add_amazing_print
97
+ require 'amazing_print'
98
+ AmazingPrint.defaults = {
57
99
  indent: -2, # left aligned
58
100
  sort_keys: true, # sort hash keys
59
101
  }
60
- ap proc.call
102
+ ap @variable
61
103
  else
62
104
  p proc.call
63
105
  end
@@ -72,18 +114,19 @@ def display_emoji_break
72
114
  end
73
115
 
74
116
  # TODO: off by one error on dynamic footer length
75
- def display_footer
117
+ def display_msg_footer
76
118
  str = "\033[#{@color}m⬆ " * ((@length / 4) - (@msg.length / 2) - 1)
77
119
  str += "\033[#{@secondary_color}m #{@msg} "
78
120
  str += "\033[#{@color}m⬆ \033[0m" * ((@length / 4))
79
121
  puts str
80
122
  end
81
123
 
82
- def display_detail_header
124
+ def display_detail_bar(top_bar = true)
125
+ arrow = top_bar ? "⬇" : "⬆"
83
126
 
84
127
  # Initial arrows with a new line padding the top
85
128
  str = ""
86
- str += "\033[#{@color}m \033[m" * 5
129
+ str += "\033[#{@color}m#{arrow} \033[m" * 5
87
130
 
88
131
  # Variable Class Display
89
132
  str += "\033[#{@color}m CLASS:\033[m"
@@ -100,10 +143,10 @@ def display_detail_header
100
143
  str += "\033[#{@secondary_color}m #{path_clip} \033[m"
101
144
 
102
145
  # Closing arrows
103
- str += "\033[#{@color}m \033[m" * 5
146
+ str += "\033[#{@color}m#{arrow} \033[m" * 5
104
147
 
105
148
  # Output completed string
106
- puts
149
+ puts if top_bar # add single line of top padding to eap output
107
150
  puts str
108
151
 
109
152
  # Set @length - non encoded string for use in footer
metadata CHANGED
@@ -1,36 +1,36 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extra_print
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.6
4
+ version: 2.1.2
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: 2018-01-01 00:00:00.000000000 Z
11
+ date: 2020-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: awesome_print
14
+ name: amazing_print
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.8'
19
+ version: '1.1'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.8.0
22
+ version: 1.1.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '1.8'
29
+ version: '1.1'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.8.0
33
- description: 'Debugging Companion: Informative variable wrappers || visual breaks.'
32
+ version: 1.1.0
33
+ description: 'Debugging Companion: Informative variable inspection || visual breaks.'
34
34
  email: bootcoder@gmail.com
35
35
  executables: []
36
36
  extensions: []
@@ -56,8 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  - !ruby/object:Gem::Version
57
57
  version: '0'
58
58
  requirements: []
59
- rubyforge_project:
60
- rubygems_version: 2.6.11
59
+ rubygems_version: 3.1.2
61
60
  signing_key:
62
61
  specification_version: 4
63
62
  summary: Easily spot variables printed in a busy console.