summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2270 from kyoshidajp/update-checkout-v3HEADmasterAndré Luis Leal Cardoso Junior2023-01-141-1/+1
|\ | | | | Bump actions/checkout from 2 to 3
| * Bump actions/checkout from 2 to 3Katsuhiko YOSHIDA2023-01-141-1/+1
|/
* Merge pull request #2267 from andrehjr/release-v0_14_2v0.14.2Kyrylo Silin2023-01-092-1/+3
|\ | | | | Prepare for v0.14.2 release
| * Prepare for v0.14.2 releaseAndré Luis Leal Cardoso Junior2023-01-082-1/+3
|/
* Merge pull request #2265 from andrehjr/update-changelogAndré Luis Leal Cardoso Junior2023-01-051-0/+24
|\ | | | | Update CHANGELOG.md to reflect the latest master changes
| * Update CHANGELOG.md to reflect the latest master changesAndré Luis Leal Cardoso Junior2023-01-051-0/+24
|/
* Merge pull request #2257 from dduugg/rm-mri-19-cruftAndré Luis Leal Cardoso Junior2023-01-013-8/+1
|\ | | | | Clean up MRI 1.9 code
| * Remove handle_read_errors 1.9 comment onlyDouglas Eichelberger2023-01-011-0/+5
| |
| * Clean up MRI 1.9 codeDouglas Eichelberger2023-01-013-12/+0
|/
* Merge pull request #2263 from andrehjr/add-newer-rubies-to-ciAndré Luis Leal Cardoso Junior2023-01-011-1/+6
|\ | | | | Add Ruby 3.2 and head to ubuntu-latest executions
| * Add Ruby 3.2 and head to ubuntu-latest executionsAndré Luis Leal Cardoso Junior2023-01-011-1/+6
|/
* Merge pull request #2262 from andrehjr/add-rubocop-single-actionsAndré Luis Leal Cardoso Junior2023-01-011-5/+15
|\ | | | | Move Rubocop checks to a single GitHub Action
| * Makes rubocop run on another jobAndré Luis Leal Cardoso Junior2023-01-011-5/+15
|/
* Merge pull request #2256 from dduugg/rubocop-todosAndré Luis Leal Cardoso Junior2022-09-1110-35/+25
|\ | | | | Complete rubocop todos
| * Complete Style/ExpandPathArguments todoDouglas Eichelberger2022-09-112-7/+1
| |
| * Complete Style/SymbolArray todoDouglas Eichelberger2022-09-119-28/+24
|/
* Merge pull request #2253 from dduugg/lazy-eval-regexKyrylo Silin2022-08-191-5/+6
|\ | | | | Short circuit eval regexes in finding module definition
| * Short circuit eval regexes in finding module definitionDouglas Eichelberger2022-08-171-5/+6
|/
* Merge pull request #2251 from andrehjr/remove-ci-configAndré Luis Leal Cardoso Junior2022-06-113-13/+1
|\ | | | | Remove Circleci config
| * Add pull_request event to GH ActionsAndré Luis Leal Cardoso Junior2022-06-111-1/+1
| |
| * Remove CircleCi badge from READMEAndré Luis Leal Cardoso Junior2022-06-111-1/+0
| |
| * Remove circleci configAndré Luis Leal Cardoso Junior2022-06-111-11/+0
|/
* Merge pull request #2239 from andrehjr/drop-ruby-1-9-3André Luis Leal Cardoso Junior2022-06-1112-149/+16
|\ | | | | Drop support for Ruby 1.9.x
| * empty runAndré Luis Leal Cardoso Junior2022-03-101-0/+11
| |
| * Remove more 1.9 related workaroundsAndré Luis Leal Cardoso Junior2022-03-104-18/+2
| |
| * Support jruby >= 9.0.0André Luis Leal Cardoso Junior2022-03-103-10/+7
| |
| * Remove support for Ruby 1.9.3André Luis Leal Cardoso Junior2022-03-107-132/+7
| |
* | Merge pull request #2235 from pry/revert-2154-patch-1André Luis Leal Cardoso Junior2022-04-212-24/+24
|\ \ | | | | | | Revert "Escape non-printing characters"
| * | Revert "Escape non-printing characters"André Luis Leal Cardoso Junior2022-03-062-24/+24
| | |
* | | Merge pull request #2236 from andrehjr/enable-editor-code-flagsAndré Luis Leal Cardoso Junior2022-04-091-1/+3
|\ \ \ | | | | | | | | Configure `code` as a supported editor on Pry::Editor
| * | | Configure `code` as a supported editor on Pry::EditorAndré Luis Leal Cardoso Junior2022-03-061-1/+3
| |/ /
* | | Merge pull request #2245 from andrehjr/fix-ruby19-buildAndré Luis Leal Cardoso Junior2022-04-091-1/+1
|\ \ \ | | | | | | | | Fix ruby 1.9 build
| * | | Fix ruby 1.9 buildAndré Luis Leal Cardoso Junior2022-04-091-1/+1
|/ / /
* | | Fix rubocop warningsAndré Luis Leal Cardoso Junior2022-04-092-5/+7
| | |
* | | Merge pull request #2244 from jcoleman/patch-1André Luis Leal Cardoso Junior2022-04-093-1/+42
|\ \ \ | | | | | | | | Weird method location shouldn't match unknown location
| * | | Weird method location shouldn't match unknown locationJames Coleman2022-04-093-1/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Methods that don't have a source location (e.g., C methods, or methods created via metaprogramming or even `alias_method` to C methods) are not reasonable possible matching methods for a "weird method" we need to locate. In this case `renamed_method_source_location` can also return `nil` if the actual code in question is a bare script (i.e., no methods). If that script is loaded via `eval` then we'll end up in the weird method path in the first place, but no method matching can be found, and if a no-source-location method exists, we'll return that. Down the line that's particularly painful because the source loading thinks it's a C method, but it can actually be from metaprogramming (and `alias_method`!), and then `Pry::Method#pry_doc_info` raises an error, and `wherami` breaks even though we already have valid `__FILE__` and `__LINE__` values.
* | | | Merge pull request #2242 from andrehjr/use-actions-v3André Luis Leal Cardoso Junior2022-04-021-3/+3
|\ \ \ \ | |/ / / | | | | Use actions/checkout@v3
| * | | Pin build on jruby-9.3.3.0André Luis Leal Cardoso Junior2022-04-021-2/+2
| | | |
| * | | Use actions/checkout@v3André Luis Leal Cardoso Junior2022-03-301-1/+1
|/ / /
* | | Merge pull request #2241 from andrehjr/remove-gist-readmeAndré Luis Leal Cardoso Junior2022-03-201-1/+0
|\ \ \ | | | | | | | | Gist integration was moved into the pry-jist gem
| * | | Gist integration was moved into the pry-jist gemAndré Luis Leal Cardoso Junior2022-03-201-1/+0
|/ / /
* | | Merge pull request #2237 from andrehjr/fix-spec-cannot-call-pry-inside-trapAndré Luis Leal Cardoso Junior2022-03-111-0/+1
|\ \ \ | |_|/ |/| | As readline is being lazy required it throws an error when it gets resolved inside the trap signal
| * | As readline is being lazy required it throws an error when it gets resolved ↵André Luis Leal Cardoso Junior2022-03-091-0/+1
| | | | | | | | | | | | inside the trap signal
* | | Merge pull request #2238 from andrehjr/enable-windows-3xAndré Luis Leal Cardoso Junior2022-03-092-3/+1
|\ \ \ | |/ / |/| | Add ruby 3.0 to the windows test matrix
| * | Add ruby 3.0 to the windows test matrixAndré Luis Leal Cardoso Junior2022-03-092-3/+1
|/ /
* | Merge pull request #2234 from andrehjr/windows-testsAndré Luis Leal Cardoso Junior2022-03-067-41/+80
|\ \ | |/ |/| Configure Windows on Github Actions
| * Remove extra commentsAndré Luis Leal Cardoso Junior2022-03-052-4/+0
| |
| * Skip spec/pry_repl_spec.rb spec on windowsAndré Luis Leal Cardoso Junior2022-03-051-0/+1
| |
| * Fix Pry::History specs on windowsAndré Luis Leal Cardoso Junior2022-03-052-8/+13
| | | | | | | | Co-Authored-by: SilverPhoenix99 <silver.phoenix99@gmail.com>
| * Ensure files are not shell escaped on windows testsAndré Luis Leal Cardoso Junior2022-03-051-1/+5
| |