Skip to content

Commit

Permalink
Regenerate gemspec for version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyObtiva committed Aug 26, 2020
1 parent 1c9d579 commit 6f7724d
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions puts_debuggerer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: puts_debuggerer 0.9.0 ruby lib
# stub: puts_debuggerer 0.10.0 ruby lib

Gem::Specification.new do |s|
s.name = "puts_debuggerer".freeze
s.version = "0.9.0"
s.version = "0.10.0"

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-07-24"
s.date = "2020-08-26"
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 @@ -23,11 +23,15 @@ Gem::Specification.new do |s|
"LICENSE.txt",
"README.md",
"VERSION",
"lib/puts_debuggerer.rb"
"lib/pd.rb",
"lib/puts_debuggerer.rb",
"lib/puts_debuggerer/core_ext/kernel.rb",
"lib/puts_debuggerer/run_determiner.rb",
"lib/puts_debuggerer/source_file.rb"
]
s.homepage = "http://github.com/AndyObtiva/puts_debuggerer".freeze
s.licenses = ["MIT".freeze]
s.rubygems_version = "3.1.2".freeze
s.rubygems_version = "3.1.4".freeze
s.summary = "Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.".freeze

if s.respond_to? :specification_version then
Expand All @@ -45,6 +49,7 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<simplecov>.freeze, ["~> 0.16.1"])
s.add_development_dependency(%q<simplecov-lcov>.freeze, ["~> 0.7.0"])
s.add_development_dependency(%q<undercover>.freeze, ["~> 0.3.4"])
s.add_development_dependency(%q<logging>.freeze, [">= 2.3.0"])
else
s.add_dependency(%q<awesome_print>.freeze, ["~> 1.8.0"])
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
Expand All @@ -56,6 +61,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<simplecov>.freeze, ["~> 0.16.1"])
s.add_dependency(%q<simplecov-lcov>.freeze, ["~> 0.7.0"])
s.add_dependency(%q<undercover>.freeze, ["~> 0.3.4"])
s.add_dependency(%q<logging>.freeze, [">= 2.3.0"])
end
end

0 comments on commit 6f7724d

Please sign in to comment.