extra_print 1.1.5 → 2.1.1

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 +64 -23
  3. metadata +9 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e8179a954b0c0364adaec148cde8370e5078d936
4
- data.tar.gz: 65c83c346a17992098a962d74a967a187ff525ad
2
+ SHA256:
3
+ metadata.gz: ab2a835222a0008de12e9ea6bcc2c9102789e67468b9562b67110c577dbb69bc
4
+ data.tar.gz: 8a508b8d044cf3fb8c6eafb7c2a1b309dbf0a95a4804b3af9ab8f0fab5ee2794
5
5
  SHA512:
6
- metadata.gz: 28577c268809b3f1e8d1f1ceea9a85277817e85c895607382078036311d177eab003520c70e69ef6d9d90efaed6636e1140842d54e2880759d987e0665634cd4
7
- data.tar.gz: e630b74253541c969e190e6baeb53f090da5869630f28c0bde31054113e58318906ef5474ad837e0c3581e4ffc05aa1eb052dd40bf76269182bd9e4835aab33a
6
+ metadata.gz: 1c1d08125dcf03a993a339925a5ef6987230c4f13ce92214e372c0c2a1f00ad828c5d5a107d487ac16febd57532b2cff44316ee766c96c4bf359647eb1c219d7
7
+ data.tar.gz: 856c29c79fe87cd9e5d94a9f9d7d8e16b62f2c6414237ba65cb9dde140ed4c184fb86dcbc54f15e51fdf472c3c6f67adb65b59450bb11892355a23dfea448add
@@ -1,62 +1,102 @@
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
- # require 'awesome_print'
5
+ # require 'amazing_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 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
+ #######################################################################
35
+
17
36
  def ep(*args)
18
37
  @caller_path = caller
19
38
  return display_emoji_break if args.empty?
20
39
  extra_print(args[0], args[1])
21
- args[0]
40
+ return_value(args[0])
22
41
  end
23
42
 
24
43
  def eap(*args)
25
44
  @caller_path = caller
26
45
  return display_emoji_break if args.empty?
27
46
  extra_print(args[0], args[1], true)
28
- args[0]
47
+ return_value(args[0])
29
48
  end
30
49
 
31
50
  private
32
51
 
33
- def extra_print(variable = nil, msg = nil, add_awesome_print = false)
52
+ def extra_print(variable = nil, msg = nil, add_amazing_print = false)
34
53
  # Set variables
35
- @color = $COLORS.values.sample
54
+ @msg = msg
36
55
  @variable = variable
37
- @msg = msg ? msg : " FINISH "
38
- # If the color being passed in is RED set secondary color to BLUE
39
- @secondary_color = @color == '031' ? '034' : '031'
56
+
57
+ # No red/green if calling from a spec
58
+ if $0.split('.').last[/spec|test/]
59
+ $COLORS.delete('red')
60
+ $COLORS.delete('green')
61
+ @color = $COLORS.values.sample
62
+ @secondary_color = '034'
63
+ else
64
+ @color = $COLORS.values.sample
65
+ # If the color being passed in is RED set secondary color to BLUE
66
+ @secondary_color = @color == '031' ? '034' : '031'
67
+ end
40
68
 
41
69
  # View Methods
42
- display_detail_header
43
- display_variable(add_awesome_print)
44
- display_footer
70
+ display_detail_bar(true)
71
+ display_variable(add_amazing_print)
72
+ @msg ? display_msg_footer : display_detail_bar(false)
73
+ end
74
+
75
+ # Checks to see if running in a Ruby file
76
+ # IF so returns value, enabling ep's from the end of a method without disrupting functionality.
77
+ # 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.
78
+ def return_value(val)
79
+ return val if defined?(Rails::Server)
80
+ return nil if defined?(Rails::Console)
81
+ return nil if $0.split('.').last.include? 'pry'
82
+ return nil if $0.split('.').last.include? 'irb'
83
+ return val if $0.split('.').last == 'rb'
84
+ val
45
85
  end
46
86
 
47
87
  def path_clip
48
88
  @caller_path[0].split('/').last(2).join('/').split(':in')[0]
49
89
  end
50
90
 
51
- def display_variable(add_awesome_print)
91
+ def display_variable(add_amazing_print)
52
92
  proc = Proc.new { @variable }
53
- if add_awesome_print
54
- require 'awesome_print'
55
- AwesomePrint.defaults = {
93
+ if add_amazing_print
94
+ require 'amazing_print'
95
+ AmazingPrint.defaults = {
56
96
  indent: -2, # left aligned
57
97
  sort_keys: true, # sort hash keys
58
98
  }
59
- ap proc.call
99
+ ap @variable
60
100
  else
61
101
  p proc.call
62
102
  end
@@ -71,18 +111,19 @@ def display_emoji_break
71
111
  end
72
112
 
73
113
  # TODO: off by one error on dynamic footer length
74
- def display_footer
114
+ def display_msg_footer
75
115
  str = "\033[#{@color}m⬆ " * ((@length / 4) - (@msg.length / 2) - 1)
76
116
  str += "\033[#{@secondary_color}m #{@msg} "
77
117
  str += "\033[#{@color}m⬆ \033[0m" * ((@length / 4))
78
118
  puts str
79
119
  end
80
120
 
81
- def display_detail_header
121
+ def display_detail_bar(top_bar = true)
122
+ arrow = top_bar ? "⬇" : "⬆"
82
123
 
83
124
  # Initial arrows with a new line padding the top
84
125
  str = ""
85
- str += "\033[#{@color}m \033[m" * 5
126
+ str += "\033[#{@color}m#{arrow} \033[m" * 5
86
127
 
87
128
  # Variable Class Display
88
129
  str += "\033[#{@color}m CLASS:\033[m"
@@ -99,7 +140,7 @@ def display_detail_header
99
140
  str += "\033[#{@secondary_color}m #{path_clip} \033[m"
100
141
 
101
142
  # Closing arrows
102
- str += "\033[#{@color}m \033[m" * 5
143
+ str += "\033[#{@color}m#{arrow} \033[m" * 5
103
144
 
104
145
  # Output completed string
105
146
  puts
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.5
4
+ version: 2.1.1
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: 2017-12-29 00:00:00.000000000 Z
11
+ date: 2020-06-01 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.