Skip to content

Commit

Permalink
Regenerate gemspec for version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyObtiva committed Oct 2, 2020
1 parent 74b7ffd commit 7301960
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion puts_debuggerer.gemspec
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Andy Maleh".freeze]
s.date = "2020-09-04"
s.date = "2020-10-02"
s.description = "Debuggers are great! They help us troubleshoot complicated programming problems by inspecting values produced by code, line by line. They are invaluable when trying to understand what is going on in a large application composed of thousands or millions of lines of code.\nIn day-to-day test-driven development and simple debugging though, a puts statement can be a lot quicker in revealing what is going on than halting execution completely just to inspect a single value or a few. This is certainly true when writing the simplest possible code that could possibly work, and running a test every few seconds or minutes. Problem is you need to locate puts statements in large output logs, know which methods were invoked, find out what variable names are being printed, and see nicely formatted output. Enter puts_debuggerer. A guilt-free puts debugging Ruby gem FTW that prints file names, line numbers, code statements, and formats output nicely courtesy of awesome_print.\nPartially inspired by this blog post: https://tenderlovemaking.com/2016/02/05/i-am-a-puts-debuggerer.html (Credit to Tenderlove.)\n".freeze
s.email = "andy.am@gmail.com".freeze
s.extra_rdoc_files = [
Expand All @@ -26,6 +26,8 @@ Gem::Specification.new do |s|
"lib/pd.rb",
"lib/puts_debuggerer.rb",
"lib/puts_debuggerer/core_ext/kernel.rb",
"lib/puts_debuggerer/core_ext/logger.rb",
"lib/puts_debuggerer/core_ext/logging/logger.rb",
"lib/puts_debuggerer/run_determiner.rb",
"lib/puts_debuggerer/source_file.rb"
]
Expand Down

0 comments on commit 7301960

Please sign in to comment.