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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/extra_print.rb +11 -4
  3. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 452f4942f9ce05acba72cf92e1472d83cda3684a
4
- data.tar.gz: '089b882bf26e5af5376f076eb3797bd25f485991'
3
+ metadata.gz: e8179a954b0c0364adaec148cde8370e5078d936
4
+ data.tar.gz: 65c83c346a17992098a962d74a967a187ff525ad
5
5
  SHA512:
6
- metadata.gz: ae04a466c7b6045c303f7937c294fff6b112607169ba65f49551e8701ab36172dc307f0b375caa89e50771740074b57738573022480ad5522635a9189e4db842
7
- data.tar.gz: 884c0d4185457618de5615fdae36cf5baed380b49d27dc979bddf14dbd65b8dfb06e5792c2351b4b2c3631b63d20dffb9aad709e20fb9661d26736a33121e490
6
+ metadata.gz: 28577c268809b3f1e8d1f1ceea9a85277817e85c895607382078036311d177eab003520c70e69ef6d9d90efaed6636e1140842d54e2880759d987e0665634cd4
7
+ data.tar.gz: e630b74253541c969e190e6baeb53f090da5869630f28c0bde31054113e58318906ef5474ad837e0c3581e4ffc05aa1eb052dd40bf76269182bd9e4835aab33a
@@ -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 eap(*args)
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], true)
20
+ extra_print(args[0], args[1])
18
21
  args[0]
19
22
  end
20
23
 
21
- def ep(*args)
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
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-27 00:00:00.000000000 Z
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: Simple gem to display variables and visual breaks.
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: http://rubygems.org/gems/extra_print
40
+ homepage: https://github.com/bootcoder/extra_print
41
41
  licenses:
42
42
  - MIT
43
43
  metadata: {}