Skip to content

Commit

Permalink
Version 1.0.0 pd now includes class/method after file/line in every…
Browse files Browse the repository at this point in the history
… printout
  • Loading branch information
AndyObtiva committed May 31, 2024
1 parent 5bfaf88 commit 0a5ece7
Show file tree
Hide file tree
Showing 29 changed files with 336 additions and 305 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.0.2
ruby-3.2.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.0.0

- Support including class/method after file/line in every `pd` printout

## 0.13.5

- Fix not printing source line in Rails app w/ Pry
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ group :development do
gem 'rdoc', '~> 3.12'
gem 'jeweler', '~> 2.3.9'
gem 'bundler', '>= 2.1.4'
gem 'coveralls', '= 0.8.23', require: false
gem 'simplecov', '~> 0.16.1', require: nil
gem 'simplecov-lcov', '~> 0.7.0', require: nil
# gem 'coveralls', '= 0.8.23', require: false
# gem 'simplecov', '~> 0.16.1', require: nil
# gem 'simplecov-lcov', '~> 0.7.0', require: nil
gem 'logging', '>= 2.3.0'
gem 'rake-tui'
end
74 changes: 26 additions & 48 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,12 @@ GEM
addressable (2.4.0)
awesome_print (1.9.2)
builder (3.2.4)
coveralls (0.8.23)
json (>= 1.8, < 3)
simplecov (~> 0.16.1)
term-ansicolor (~> 1.3)
thor (>= 0.19.4, < 2.0)
tins (~> 1.6)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
diff-lcs (1.5.0)
docile (1.4.0)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
git (1.10.2)
git (1.11.0)
rchardet (~> 1.8)
github_api (0.16.0)
addressable (~> 2.4.0)
Expand All @@ -26,7 +19,7 @@ GEM
mime-types (>= 1.16, < 3.0)
oauth2 (~> 1.0)
hashie (5.0.0)
highline (2.0.3)
highline (2.1.0)
jeweler (2.3.9)
builder
bundler
Expand All @@ -39,65 +32,53 @@ GEM
rdoc
semver2
json (1.8.6)
jwt (2.3.0)
jwt (2.7.0)
little-plugger (1.1.4)
logging (2.3.0)
logging (2.3.1)
little-plugger (~> 1.1)
multi_json (~> 1.14)
mime-types (2.99.3)
mini_portile2 (2.7.1)
mini_portile2 (2.8.2)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.1.1)
nokogiri (1.13.1)
mini_portile2 (~> 2.7.0)
multipart-post (2.3.0)
nokogiri (1.14.3)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
oauth2 (1.4.7)
faraday (>= 0.8, < 2.0)
oauth2 (1.4.8)
faraday (>= 0.8, < 3.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
pastel (0.8.0)
tty-color (~> 0.5)
psych (4.0.3)
psych (5.1.0)
stringio
racc (1.6.0)
rack (2.2.3)
racc (1.6.2)
rack (2.2.7)
rake (13.0.6)
rake-tui (0.2.3)
tty-prompt
rchardet (1.8.0)
rdoc (3.12.2)
json (~> 1.4)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.2)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.2)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.3)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.5)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.3)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
semver2 (3.4.2)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
simplecov-lcov (0.7.0)
stringio (3.0.1)
sync (0.5.0)
term-ansicolor (1.7.1)
tins (~> 1.0)
thor (1.2.1)
stringio (3.0.6)
thread_safe (0.3.6)
tins (1.31.0)
sync
tty-color (0.6.0)
tty-cursor (0.7.1)
tty-prompt (0.23.1)
Expand All @@ -116,15 +97,12 @@ PLATFORMS
DEPENDENCIES
awesome_print (~> 1.9.2)
bundler (>= 2.1.4)
coveralls (= 0.8.23)
jeweler (~> 2.3.9)
logging (>= 2.3.0)
rake-tui
rdoc (~> 3.12)
rspec (~> 3.5)
rspec-mocks (~> 3.5)
simplecov (~> 0.16.1)
simplecov-lcov (~> 0.7.0)

BUNDLED WITH
2.3.6
2.4.13
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017-2021 - Andy Maleh
Copyright (c) 2017-2024 - Andy Maleh

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
Loading

0 comments on commit 0a5ece7

Please sign in to comment.