wacktrace 1.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2d1e62ed685b7a24cbd9d1853bacead2896733ad67dd4f30128fb63e8aa0e4b2
4
+ data.tar.gz: fb79e2c8469e8d775a5836cfd9f1bc14a4a2810f571675fa8e26480df52e6281
5
+ SHA512:
6
+ metadata.gz: 1ccc53b317b2df1b84f13e0f5a49bd5da43c9a81d68871ba9665954618696585b225648a3f0c42a728ba761ca9722cdfa7b2432ae398960a5d8a30693364061c
7
+ data.tar.gz: 1a1da86ca8e75f8754b79fe1d12f0025610fd46bd3040c329736b4aea70c0c894a24122959c1c4d1b6b01abe465374c4a1a1d476a45bbb30224d3a7cd12f09ca
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2021-08-30
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at kevin@kevinkuchta.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+ ruby '3.0'
5
+
6
+ # Specify your gem's dependencies in wacktrace.gemspec
7
+ gemspec
8
+
9
+ # gem "rake", "~> 13.0"
10
+
11
+ # gem "rspec", "~> 3.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,48 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ wacktrace (1.0.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ byebug (11.1.3)
10
+ coderay (1.1.3)
11
+ diff-lcs (1.4.4)
12
+ method_source (1.0.0)
13
+ pry (0.13.1)
14
+ coderay (~> 1.1)
15
+ method_source (~> 1.0)
16
+ pry-byebug (3.9.0)
17
+ byebug (~> 11.0)
18
+ pry (~> 0.13.0)
19
+ rake (13.0.6)
20
+ rspec (3.10.0)
21
+ rspec-core (~> 3.10.0)
22
+ rspec-expectations (~> 3.10.0)
23
+ rspec-mocks (~> 3.10.0)
24
+ rspec-core (3.10.1)
25
+ rspec-support (~> 3.10.0)
26
+ rspec-expectations (3.10.1)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.10.0)
29
+ rspec-mocks (3.10.2)
30
+ diff-lcs (>= 1.2.0, < 2.0)
31
+ rspec-support (~> 3.10.0)
32
+ rspec-support (3.10.2)
33
+
34
+ PLATFORMS
35
+ x86_64-darwin-19
36
+ x86_64-linux
37
+
38
+ DEPENDENCIES
39
+ pry-byebug (~> 3.9)
40
+ rake (~> 13.0)
41
+ rspec (~> 3.2)
42
+ wacktrace!
43
+
44
+ RUBY VERSION
45
+ ruby 3.0.0p0
46
+
47
+ BUNDLED WITH
48
+ 2.2.26
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Kevin Kuchta
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,167 @@
1
+ # Wacktrace
2
+
3
+ Make your stacktraces wack! Insert arbitrary content into the call stack if that is, for some reason, something you want to do. Who am I to judge?
4
+
5
+ ```
6
+ # in example.rb:
7
+ Wacktrace.add_to_stack([
8
+ ['Fire in the disco!', 1, '🔥🕺 '],
9
+ ['Fire in the Taco Bell!', 2, '🔥🌮 '],
10
+ ['Fire in the disco!', 3, '🔥🕺 '],
11
+ ['Fire in the gates of hell!', 4, '🔥😈 '],
12
+ ]) do
13
+ raise "High Voltage!"
14
+ end
15
+ ```
16
+
17
+ ```
18
+ $ ruby example.rb
19
+ example.rb:25:in `block in <main>': High Voltage! (RuntimeError)
20
+ from /Users/kevin/.rvm/gems/ruby-3.0.0/gems/wacktrace-0.1.0/lib/wacktrace.rb:49:in `block in add_to_stack'
21
+ from 🔥🕺 :1:in ` Fire in the disco︕ '
22
+ from 🔥🌮 :2:in ` Fire in the Taco Bell︕'
23
+ from 🔥🕺 :3:in ` Fire in the disco︕'
24
+ from 🔥😈 :4:in ` Fire in the gates of hell︕'
25
+ from /Users/kevin/.rvm/gems/ruby-3.0.0/gems/wacktrace-0.1.0/lib/wacktrace.rb:50:in `add_to_stack'
26
+ from example.rb:19:in `<main>'
27
+ ```
28
+
29
+ Amaze your friends! Annoy your coworkers! Ok, it's mostly that second one! But maybe someone has a good use for this, like inserting warnings into stack traces:
30
+
31
+ ```
32
+ Traceback (most recent call last):
33
+ 14: from example.rb:47:in `<main>'
34
+ 13: from example.rb:35:in `dangerous_method'
35
+ 12: from /Users/kevin/.rvm/gems/ruby-2.7.2/gems/wacktrace-0.1.0/lib/wacktrace.rb:60:in `add_to_stack_from_lyrics'
36
+ 11: from /Users/kevin/.rvm/gems/ruby-2.7.2/gems/wacktrace-0.1.0/lib/wacktrace.rb:50:in `add_to_stack'
37
+ 10: from !:in ` '
38
+ 9: from !:1:in `  ––––––––––––––––– WARNING︕ ––––––––––––––––––––––'
39
+ 8: from !:2:in ` | If you hit an error here, you *really* need |'
40
+ 7: from !:3:in ` | to go over to the FooBarBaz admin panel and    |'
41
+ 6: from !:4:in ` | clean up the Spleem that were erroniously      |'
42
+ 5: from !:5:in ` | created․  If you don’t do that, bad things    |'
43
+ 4: from !:6:in ` | will happen︕                                  |'
44
+ 3: from !:7:in `  ––––––––––––––––––––––––––––––––––––––––––––––––––'
45
+ 2: from /Users/kevin/.rvm/gems/ruby-2.7.2/gems/wacktrace-0.1.0/lib/wacktrace.rb:49:in `block in add_to_stack'
46
+ 1: from example.rb:44:in `block in dangerous_method'
47
+ example.rb:30:in `real_dangerous_method': terrible error (RuntimeError)
48
+ ```
49
+
50
+ ### How's it work?
51
+
52
+ Sketchily! It's a set of wack stack hacks. The basic idea is that we just set up a series of methods like:
53
+
54
+ ```
55
+ def a; b; end
56
+ def b; c; end
57
+ def c; actual_function; end
58
+ ```
59
+
60
+ But to dynamically generate methods, you'd usually reach for `define_method`. Unfortunately, methods defined with `define_method` don't actually show up in call stacks because that'd be too easy. Instead we'll use `eval("def #{method_name};#{next_method_name};end")`. And, as a bonus, `eval` lets us pass in a filename and line number for stack trace purposes!
61
+
62
+ But to avoid having a hundred methods in the global namespace like `baby_shark_do_do_do_do_do_do_do`, we'll `Class.new`-up a temporary class and then `instance_eval` on that.
63
+
64
+ But now we're stuck with underscore-laden method names. We're not gonna stand for that kinda limitation. We're gonna reach for the sun and slap the face of god. We'll take arbitrary text and replace all the invalid characters like `"` and `@` with unicode near-equivalents like `"` and `@`. Because `def Cthulhu R'lyeh wgah'nagl fhtagn` isn't a valid ruby method, but the visually-identical `def Cthulhu R’lyeh wgah’nagl fhtagn` is!
65
+
66
+ Other fun tricks:
67
+
68
+ - Detect which direction ruby is printing stack traces today (it's newest-first on a gibbous or waxing moon, and newest-last the rest of the month)
69
+ - Deal with duplicate method names by padding them with non-breaking-spaces
70
+ - Prepend all methods with non-breaking spaces so ruby doesn't get confused by methods that start with capital letters
71
+
72
+ ## Installation
73
+
74
+ Add this line to your application's Gemfile:
75
+
76
+ ```ruby
77
+ gem 'wacktrace'
78
+ ```
79
+
80
+ And then execute:
81
+
82
+ $ bundle install
83
+
84
+ Or install it yourself as:
85
+
86
+ $ gem install wacktrace
87
+
88
+ ## Usage
89
+
90
+ To have full(ish) control over the stack trace contents, call `add_to_stack` and give it a block. That block will be run with the lines you provide in its call stack:
91
+
92
+ ```
93
+ Wacktrace.add_to_stack([
94
+ ['method name 1', 123, 'file name 1'],
95
+ ['method name 2', 123, 'file name 2'],
96
+ ['method name 3', 123, 'file name 3'],
97
+ ]) do
98
+ puts caller_locations
99
+ # Prints out:
100
+ # file name 1:123:in ` method name 1'
101
+ # file name 2:456:in ` method name 2'
102
+ # file name 3:789:in ` method name 3'
103
+ end
104
+ ```
105
+
106
+ If you want a quicker way to shove a bunch of text (like a warning, comment, or classic poem on the fleeting nature of mankind's greatest achievements), you can use `add_to_stack_from_lyrics` with a single newline-delimited string:
107
+
108
+ ```
109
+ lyrics = "I met a traveller from an antique land,
110
+ Who said—“Two vast and trunkless legs of stone
111
+ Stand in the desert... Near them, on the sand,
112
+ Half sunk a shattered visage lies, whose frown,
113
+ And wrinkled lip, and sneer of cold command,
114
+ Tell that its sculptor well those passions read
115
+ Which yet survive, stamped on these lifeless things,
116
+ The hand that mocked them, and the heart that fed;
117
+ And on the pedestal!, these words appear:
118
+ My name is Ozymandias, King of Kings;
119
+ Look on my Works, ye Mighty, and despair!
120
+ Nothing beside remains. Round the decay
121
+ Of that colossal Wreck, boundless and bare
122
+ The lone and level sands stretch far away.”"
123
+ Wacktrace.add_to_stack_from_lyrics(lyrics, 'Percy Bysshe Shelley') { raise "Suck it, Horace Smith." }
124
+ ```
125
+
126
+ ...which will result in...
127
+
128
+ ```
129
+ ruby example.rb
130
+ example.rb:17:in `block in <main>': Suck it, Horace Smith. (RuntimeError)
131
+ from /Users/kevin/.rvm/gems/ruby-3.0.0/gems/wacktrace-0.1.0/lib/wacktrace.rb:56:in `block in add_to_stack'
132
+ from Percy Bysshe Shelley:in ` I met a traveller from an antique land,'
133
+ from Percy Bysshe Shelley:1:in ` Who said—“Two vast and trunkless legs of stone'
134
+ from Percy Bysshe Shelley:2:in ` Stand in the desert․․․ Near them, on the sand,'
135
+ from Percy Bysshe Shelley:3:in ` Half sunk a shattered visage lies, whose frown,'
136
+ from Percy Bysshe Shelley:4:in ` And wrinkled lip, and sneer of cold command,'
137
+ from Percy Bysshe Shelley:5:in ` Tell that its sculptor well those passions read'
138
+ from Percy Bysshe Shelley:6:in ` Which yet survive, stamped on these lifeless things,'
139
+ from Percy Bysshe Shelley:7:in ` The hand that mocked them, and the heart that fed;'
140
+ from Percy Bysshe Shelley:8:in ` And on the pedestal︕, these words appear:'
141
+ from Percy Bysshe Shelley:9:in ` My name is Ozymandias, King of Kings;'
142
+ from Percy Bysshe Shelley:10:in ` Look on my Works, ye Mighty, and despair︕'
143
+ from Percy Bysshe Shelley:11:in ` Nothing beside remains․ Round the decay'
144
+ from Percy Bysshe Shelley:12:in ` Of that colossal Wreck, boundless and bare'
145
+ from Percy Bysshe Shelley:13:in ` The lone and level sands stretch far away․”'
146
+ from /Users/kevin/.rvm/gems/ruby-3.0.0/gems/wacktrace-0.1.0/lib/wacktrace.rb:57:in `add_to_stack'
147
+ from /Users/kevin/.rvm/gems/ruby-3.0.0/gems/wacktrace-0.1.0/lib/wacktrace.rb:67:in `add_to_stack_from_lyrics'
148
+ from example.rb:17:in `<main>'
149
+ ```
150
+
151
+ ## Development
152
+
153
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
154
+
155
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
156
+
157
+ ## Contributing
158
+
159
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/wacktrace. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/wacktrace/blob/main/CODE_OF_CONDUCT.md).
160
+
161
+ ## License
162
+
163
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
164
+
165
+ ## Code of Conduct
166
+
167
+ Everyone interacting in the Wacktrace project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/wacktrace/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "wacktrace"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Wacktrace
4
+ VERSION = "1.0.0"
5
+ end
data/lib/wacktrace.rb ADDED
@@ -0,0 +1,190 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "wacktrace/version"
4
+
5
+ module Wacktrace
6
+ class Error < StandardError; end
7
+ class << self
8
+ # Runs the given block with the given lines inserted into the call stack
9
+ # above it. Lines should be an array like:
10
+ #
11
+ # [
12
+ # ["somemethod1", 111, "somefile1"],
13
+ # ["somemethod2", 222, "somefile2"],
14
+ # ["somemethod3", 333, "somefile3"],
15
+ # ]
16
+ #
17
+ # That will result in a strack trace like:
18
+ #
19
+ # "somefile3:333:in ` somemethod3'",
20
+ # "somefile2:222:in ` somemethod2'",
21
+ # "somefile1:111:in ` somemethod1'",
22
+ #
23
+ def add_to_stack(lines, &real)
24
+ if lines.length <= 0
25
+ return real.call
26
+ end
27
+
28
+ # If stack traces are being printed newest-to-oldest, we need to reverse
29
+ # the input lines in order to have them print out readably.
30
+ if detect_order == :recent_first
31
+ lines.reverse!
32
+ end
33
+
34
+ lines = fix_duplicate_methods(lines)
35
+
36
+ # Create a namespace for all these methods so we don't polute the global
37
+ # namespace.
38
+ container_class = Class.new
39
+
40
+ raise "add to stack missing block" unless block_given?
41
+
42
+ lines = lines.map { |line| [clean_method_name(line[0]), line[1], line[2]] }
43
+
44
+ # Define each method in series: a calls b, b calls c, and so on. The last
45
+ # line does not get a method defined here.
46
+ lines.each_cons(2) do |line_1, line_2|
47
+ # puts "defining '#{line_1[0]}'"
48
+ success = true
49
+ define_stack_level(container_class, line_1, line_2[0])
50
+ end
51
+
52
+ last = lines.last
53
+ define_stack_level(container_class, last, 'ending')
54
+ container_class.define_singleton_method("ending") { real.call }
55
+ return container_class.send(lines.first[0])
56
+ end
57
+
58
+ # This is a convenience method to construct a stack trace from a single
59
+ # string with a bunch of newlines (eg the lyrics to a song or words to a
60
+ # poem). It'll use the same filename for each line.
61
+ def add_to_stack_from_lyrics(lyrics, filename, &block)
62
+ lines = lyrics.split("\n").map.with_index do |line, i|
63
+ [line, i, filename]
64
+ end
65
+ add_to_stack(lines, &block)
66
+ end
67
+
68
+ private
69
+
70
+ # Because we can't have two methods with the same name in the same
71
+ # namespace, we'll need to modify any lines with the same method name
72
+ # (line[0]). To do this, we'll just pad each duplicate line with
73
+ # non-breaking spaces. So if you have several lines with the method name
74
+ # "foo", they'll become "foo", "foo ", "foo  ", etc.
75
+ def fix_duplicate_methods(lines)
76
+ counts = {}
77
+ lines.map { |line|
78
+ method_name = line[0]
79
+ if counts[method_name]
80
+ original_method_name = method_name
81
+ method_name = method_name + (' ' * counts[method_name])
82
+ counts[original_method_name] += 1
83
+ else
84
+ counts[method_name] = 1
85
+ end
86
+ [method_name, line[1], line[2]]
87
+ }
88
+ end
89
+
90
+ def clean_method_name(string)
91
+ # Always start the method name with a non-breaking space so ruby doesn't
92
+ # interpret it as a constant if you started the string with a capital.
93
+ ' ' + string
94
+ .gsub(' ', ' ')
95
+ .gsub(',', ',')
96
+ .gsub('.', '․')
97
+ .gsub(':', ':')
98
+ .gsub("'", '’')
99
+ .gsub("@", '@')
100
+ .gsub("`", '`')
101
+ .gsub("~", '~')
102
+ .gsub("#", '#')
103
+ .gsub("$", '$')
104
+ .gsub("%", '%')
105
+ .gsub("^", '^')
106
+ .gsub("&", '&')
107
+ .gsub("*", '*')
108
+ .gsub("(", '(')
109
+ .gsub(")", ')')
110
+ .gsub("-", '–')
111
+ .gsub("+", '+')
112
+ .gsub("[", '[')
113
+ .gsub("]", ']')
114
+ .gsub("|", '|')
115
+ .gsub("/", '/')
116
+ .gsub('\\', '\')
117
+ .gsub(";", ';')
118
+ .gsub("{", '{')
119
+ .gsub("}", '}')
120
+ .gsub("\"", '"')
121
+ .gsub("'", ''')
122
+ .gsub("<", '<')
123
+ .gsub(">", '>')
124
+ # These are technically allowed at the end of a method, but I'm too lazy to
125
+ # write logic to allow that.
126
+ .gsub('!', '︕')
127
+ .gsub('?', '︖')
128
+ .gsub('=', '=')
129
+ end
130
+
131
+ # Calls the given block with the given "lines" inserted into the call stack.
132
+ # Each line should look like:
133
+ #
134
+ # [ "somemethodname", 123, "somefilename"]
135
+ #
136
+ # which will result in a traceback line that looks like:
137
+ #
138
+ # 3: from somemethodname:123:in `somefilename'
139
+ #
140
+ def define_stack_level(container_class, line, body)
141
+ success = true
142
+
143
+ # For some reason line numbers come out as one higher than whatever we put in here.
144
+ line_number = line[1].to_i - 1
145
+ method_name = line[0]
146
+ file_name = line[2]
147
+
148
+ method_string = "def #{method_name}\n#{body}\nend"
149
+
150
+ begin
151
+ container_class.instance_eval(method_string, file_name, line_number)
152
+ rescue SyntaxError => e
153
+ success = false
154
+ end
155
+
156
+ if !success || !container_class.methods.include?(method_name.to_sym)
157
+ warn("
158
+ Unable to create a method named:
159
+ #{method_name}
160
+ with body
161
+ #{method_string}
162
+ One of them probably contains some special character that's not yet handled."
163
+ )
164
+ end
165
+ end
166
+
167
+ def add_lines_to_stack(lines, &real)
168
+ add_to_stack(lyrics_to_stack_lines(lines), &real)
169
+ end
170
+
171
+ # The backtrace order varies by situation (version, tty vs file, among
172
+ # others). Rather than hardcoding the rules, let's just detect it.
173
+ def detect_order
174
+ begin
175
+ detect_order_raise
176
+ rescue Exception => e
177
+ if e.backtrace.first.include?("detect_order_raise")
178
+ return :recent_first
179
+ elsif e.backtrace.last.include?("detect_order_raise")
180
+ return :recent_last
181
+ else
182
+ return :undetectable
183
+ end
184
+ end
185
+ end
186
+ def detect_order_raise
187
+ raise 'error'
188
+ end
189
+ end
190
+ end
data/wacktrace.gemspec ADDED
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/wacktrace/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "wacktrace"
7
+ spec.version = Wacktrace::VERSION
8
+ spec.authors = ["Kevin Kuchta"]
9
+ spec.email = ["kevin@kevinkuchta.com"]
10
+
11
+ spec.summary = "Insert arbitrary text into the call stack."
12
+ spec.homepage = "https://github.com/kkuchta/wacktrace"
13
+ spec.license = "MIT"
14
+ spec.required_ruby_version = ">= 2.4.0"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/kkuchta/wacktrace"
18
+ spec.metadata["changelog_uri"] = "https://github.com/kkuchta/wacktrace/blob/main/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
25
+ end
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ # Uncomment to register a new dependency of your gem
32
+ # spec.add_dependency "example-gem", "~> 1.0"
33
+ spec.add_development_dependency "rspec", "~> 3.2"
34
+ spec.add_development_dependency "rake", "~> 13.0"
35
+ spec.add_development_dependency "pry-byebug", "~> 3.9"
36
+
37
+ # For more information and examples about making a new gem, checkout our
38
+ # guide at: https://bundler.io/guides/creating_gem.html
39
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wacktrace
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Kevin Kuchta
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-08-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry-byebug
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.9'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.9'
55
+ description:
56
+ email:
57
+ - kevin@kevinkuchta.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".rspec"
63
+ - CHANGELOG.md
64
+ - CODE_OF_CONDUCT.md
65
+ - Gemfile
66
+ - Gemfile.lock
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/wacktrace.rb
73
+ - lib/wacktrace/version.rb
74
+ - wacktrace.gemspec
75
+ homepage: https://github.com/kkuchta/wacktrace
76
+ licenses:
77
+ - MIT
78
+ metadata:
79
+ homepage_uri: https://github.com/kkuchta/wacktrace
80
+ source_code_uri: https://github.com/kkuchta/wacktrace
81
+ changelog_uri: https://github.com/kkuchta/wacktrace/blob/main/CHANGELOG.md
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 2.4.0
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubygems_version: 3.2.3
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: Insert arbitrary text into the call stack.
101
+ test_files: []